frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Upscal – A native C++/Vulkan image upscaler for Windows

https://upscal.app
1•vertex_steven•3m ago•0 comments

Flet: Build cross-platform apps in Python, on top of Flutter

https://flet.dev/
1•theanonymousone•4m ago•0 comments

I built an AI video upscaler that runs the heavy GPU work in the cloud

https://videoupscaler.com
1•vertex_steven•7m ago•1 comments

Twitch Now Trains Amazon's Generative AI Models on Your Channel by Default

https://www.ign.com/articles/twitch-now-trains-amazons-generative-ai-models-on-your-channel-by-de...
1•HelloUsername•10m ago•0 comments

Hitchhiker's Guide to the Internet (1992)

https://www.gutenberg.org/cache/epub/39/pg39-images.html
1•ecliptik•14m ago•0 comments

Celld v0.2.0

https://github.com/denoland/celld/releases/tag/v0.2.0
1•tosh•15m ago•0 comments

Hardware researcher creates project to find the slowest single x86 instruction

https://www.tomshardware.com/pc-components/cpus/hardware-researcher-spins-up-cpu-deoptimization-p...
1•thunderbong•16m ago•0 comments

Launch HN: Bullet (YC S26) – A Faster Coding Agent

https://www.codewithbullet.com
2•adi1•22m ago•0 comments

Google's newest Pixel Watch monitors blood pressure and insulin resistance

https://www.engadget.com/2235228/google-health-guardian-pixel-watch-5-blood-pressure-insulin-resi...
1•brandonb•22m ago•1 comments

What Was the Internet?

https://www.bostonreview.net/articles/what-was-the-internet/
3•doener•24m ago•0 comments

OMS/RDC: 7 Opportunités D'emploi À NE PAS Manquer

https://medium.com/@eliudprom/oms-rdc-7-opportunit%C3%A9s-demploi-%C3%A0-ne-pas-manquer-0c454d0e367a
1•kivuhub•28m ago•0 comments

Official Fritzing part for the GGreg20_V3 Geiger counter module

https://iot-devices.com.ua/en/ggreg20_v3-fritzing-part/
1•iotdevicesdev•30m ago•0 comments

Gemini API removes postpay billing

4•alex14fr•30m ago•0 comments

A Pi setup with permission, sandbox, and auto-review

https://ptgamr.substack.com/p/a-pi-setup-with-permission-sandbox
1•ptgamr•33m ago•0 comments

Guide to (not) fucking up QR codes

https://infosec.exchange/@rebane2001/117078420917152774
1•signa11•33m ago•1 comments

JEDEC Previews LPDDR6 Roadmap, 512 GB Densities and SOCAMM2 Standard

https://www.techpowerup.com/348441/jedec-previews-lpddr6-roadmap-512-gb-densities-and-socamm2-sta...
1•silentbob7•34m ago•0 comments

Ask HN: So US sanctions are more or less footguns right?

1•shafkathullah•37m ago•0 comments

The shock revelation that light bulbs are wrecking your metabolism

https://www.newscientist.com/article/2582914-the-shock-revelation-that-light-bulbs-are-wrecking-y...
1•XzetaU8•37m ago•1 comments

I feel dizzy again (2024)

https://essays.joodaloop.com/p/i-feel-dizzy-again
1•reasonableklout•38m ago•0 comments

Show HN: Relational-to-KV – AI maps relational models to ToplingDB/RocksDB

https://github.com/rockeet/relational-to-kv
2•rockeetterark•38m ago•0 comments

Coin-Sized Device Can Hack a Boeing 737

https://www.wired.com/story/this-coin-sized-device-can-hack-a-boeing-737/
2•_tk_•39m ago•0 comments

I Quit the Tenure Track

https://www.theatlantic.com/magazine/2026/09/elite-academia-leadership-hypocrisy/687969/
2•Michelangelo11•39m ago•0 comments

TiKV and MinIO used to index terabytes of JSON on low memory hardware

https://blog.glazer.ee/posts/indexing-hundreds-of-terabytes-of-json-for-fast-lookup/
1•hexdecoct•39m ago•0 comments

A ship fired a distress flare as fireworks. A ship went: This is our Christmas

1•Nautology•41m ago•0 comments

Show HN: Self University – learn system engineering via interactive puzzles

2•dima853•42m ago•0 comments

Sketches in Bedlam; or Characteristic Traits of Insanity (1823)

https://gutenberg.org/cache/epub/79350/pg79350-images.html
1•petethomas•42m ago•0 comments

Private Email Is Fine

https://buttondown.com/blog/hide-your-email
1•maguay•44m ago•0 comments

The agentic development environment with memory

https://xirp.spotify.com
1•jcsoft•44m ago•0 comments

The Mischief Haskell ECS Game Engine

https://hackage-content.haskell.org/package/mischief-ecs-0.1.0.0/docs/Mischief-ECS.html
2•kqr•45m ago•0 comments

Stealing Reasoning Traces from Proprietary LLM APIs [pdf]

https://arxiv.org/abs/2608.09867
1•j1436go•55m ago•0 comments
Open in hackernews

A Critical Look at "A Critical Look at MCP."

https://docs.mcp.run/blog/2025/05/16/mcp-implenda-est/
33•palmfacehn•1y ago

Comments

nip•1y ago
> Further, one of the issues with remote servers is tenancy

Excellent write-up and understanding of the current state of MCP

I’ve been waiting for someone to point it out. This is in my opinion the biggest limitation of the current spec.

What is needed is a tool invocation context that is provided at tool invocation time.

Such tool invocation context allows passing information that would allow authorizing, authentication but also tracing the original “requester”: think of it as “tool invoked on behalf of user identity”

This of course implies an upstream authnz that feeds these details and more.

If you’re interested in this topic, my email is in my bio: I’m of the architect of our multi-tenant tool calling implementation that we’ve been running in production for the past year with enterprise customers where authnz and auditability are key requirements.

jensneuse•1y ago
The way we've solved this in our MCP gateway (OSS) is that the user first needs to authenticate against our gateway, e.g. by creating a valid JWT with their identity provider, which will be validated using JWKS. Now when they use a tool, they must send their JWT, so the LLM always acts in their behalf. This supports multiple tenants out of the box. (https://wundergraph.com/mcp-gateway)
Yoric•1y ago
Is this really hard to code?

I mean, converting a tool-less LLM into a tool-using LLM is a few hundred lines of code, and then you can plug all your tools, with whichever context you want.

nip•1y ago
Indeed very easy to code!

My point is about the need for a spec of this mechanism: without a spec, every company / org will roll out their own and result in 500 flavors of the same concept.

That’s where MCP shines: tool calling and tool discovery is already 1.5 years old (an eternity in ai land).

The MCP spec ensures that we can all focus on solving problems with tool calling rather than wasting time in cobbling together services that re not interoperable (because developed without a common spec / standard)

__loam•1y ago
This is an advertisement
tomrod•1y ago
I wish this were critical, but it is an ad for MCP.run.
nip•1y ago
It’s both in my opinion and discussions can stem from the linked article

Many come to HN also for the comments

palmfacehn•1y ago
Personally, I'm not a fan. I thought the proponent's view might stimulate a discussion.
FunnyLookinHat•1y ago
> Server authors working on large systems likely already have an OAuth 2.0 API.

I think this biases towards sufficiently large engineering organizations where OAuth 2.0 was identified as necessary for some part of their requirements. In most organizations, they're still using `x-<orgname>-token` headers and the like to do auth.

I'm not sure that there's a better / easier way to do Auth with this use case, but it does present a signficant hurdle to adoption for those who have an API (even one ready for JSON-RPC!) that is practically ready to be exposed via MCP.

motorest•1y ago
> I think this biases towards sufficiently large engineering organizations where OAuth 2.0 was identified as necessary for some part of their requirements. In most organizations, they're still using `x-<orgname>-token` headers and the like to do auth.

I don't think that's it. Auth is a critical system in any organization, and larger organizations actually present more resistance to change, particularly in business critical areas. If anything, smaller orgs gave an easier time migrating critical systems such as authentication.

hirsin•1y ago
Touching on tenancy and the "real" gaps in the spec does help push the discussion in a useful direction.

https://vulnerablemcp.info/ is a good collection of the immediately obvious issues with the MCP protocol that need to be addressed. A couple low blows in there, that feel a bit motivated to make MCP look worse, but generally a good starting point overall.

owebmaster•1y ago
This post has too many "shameless plugs" to be taken seriously.
smitty1e•1y ago
Serious question:

If doing an extended, service-level session (like a GPT interaction) with a server known beforehand, would it make sense to set up a keypair and manage the interaction over SSH?

Restated: are we throwing away a lot of bandwidth establishing TLS trust for the more general HTTP?