frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Skyra: One interface, three methods, a hashmap, and a graph that grows a brain

https://github.com/skyraOS/skyra
1•skanz•36s ago•0 comments

The Internet is not dead

https://blog.woblick.dev/en/2026/the-internet-is-not-dead/
1•Kovah•50s ago•0 comments

Two EA-18 fighter jets collide at Mountain Home airshow, pilots ejected safely

https://idahonews.com/news/local/two-f-18-fighter-jets-have-crashed-during-an-airshow-at-mountain...
1•ChrisArchitect•3m ago•0 comments

Peter G. Neumann, Who Warned of Computer Security Risks, Dies at 93

https://www.nytimes.com/2026/05/17/obituaries/peter-g-neumann-dead.html
2•rdl•4m ago•1 comments

Killing a `Cow` made my JSON formatter 42% faster

https://jacobasper.com/blog/killing-a-cow-made-my-json-formatter-42-percent-faster/
1•linolevan•5m ago•0 comments

Free 3D Mockup Video for Apps and Websites

https://www.freemockup.video/
1•buildwithdeni•5m ago•0 comments

GenCAD

https://gencad.github.io/
2•dagenix•7m ago•0 comments

Man vs. Machine [Live]

https://twitter.com/figure_robot/status/2056057735444394142
1•punnerud•8m ago•0 comments

Simpson's Paradox and the Hot Hand in Basketball (1995)

https://fermatslibrary.com/s/simpsons-paradox-and-the-hot-hand-in-basketball#email-newsletter
1•downbad_•16m ago•0 comments

Japan Team Successfully Test Engine for Mach 5 Aircraft, Eyeing 2HR Trip to US

https://mainichi.jp/english/articles/20260511/p2a/00m/0sc/015000c
2•karakoram•20m ago•0 comments

Show HN: Automated QA, Performance Tracking

https://malleon.io
1•godelshalt•21m ago•0 comments

LightInk: Solar E-ink smartwatch with LoRa and GPS lasts 10 months on one charge

https://www.notebookcheck.net/LightInk-E-ink-smartwatch-with-solar-LoRa-and-GPS-lasts-10-months-o...
1•HardwareLust•21m ago•0 comments

Linux 7.1-rc4 Released With Many Fixes

https://www.phoronix.com/news/Linux-7.1-rc4-Released
1•doener•23m ago•0 comments

In Defense of Operation Market Garden

https://secretaryrofdefenserock.substack.com/p/in-defense-of-operation-market-garden
1•baud147258•23m ago•0 comments

An AI Hate Wave Is Here

https://www.axios.com/2026/05/17/ai-backlash-polling-sentiment
3•karakoram•25m ago•1 comments

Microsoft is retiring Teams' Together Mode

https://www.theverge.com/tech/932215/microsoft-teams-together-mode
1•adunk•27m ago•0 comments

AI Is Starving for PDFs

https://mkotlikov.substack.com/p/your-ai-is-starving-for-pdfs
2•mkotlikov•27m ago•0 comments

Prolog Coding Horror

https://www.metalevel.at/prolog/horror
4•RohanAdwankar•32m ago•0 comments

We Lost Our Imagination

https://onatm.dev/2026/05/17/we-lost-our-imagination/
4•onatm•35m ago•2 comments

Looks like someone forgot to register this domain edwardgallrein.com – oopsie

https://replit.com/
1•ryanmerket•36m ago•0 comments

Dwarkesh in the Datacenter

https://marginalrevolution.com/marginalrevolution/2026/05/dwarkesh-in-the-datacenter.html
1•paulpauper•40m ago•0 comments

A New Kind of Family-Separation Crisis

https://www.theatlantic.com/politics/2026/05/honduras-deportations-without-children/687153/
1•paulpauper•41m ago•0 comments

My Son's Math Homework Is Essentially Just Pokémon

https://www.theatlantic.com/technology/2026/05/homework-video-games-ed-tech/687198/
1•paulpauper•41m ago•0 comments

Ask HN: Why aren't more people worried about AI impersonation in code reviews?

2•eranation•44m ago•1 comments

Release PiClaw v2.4.0 – The Infosphere · rcarmo/piclaw

https://github.com/rcarmo/piclaw/releases/tag/v2.4.0
1•rcarmo•45m ago•0 comments

Artificial Intelligence and Grade Inflation

https://cshe.berkeley.edu/publications/artificial-intelligence-and-grade-inflation-cshe-higher-ed...
1•ChrisArchitect•45m ago•0 comments

Rcarmo/iOS-terax-AI: Personal fork of Terax for integration with iOS-Linux-kit

https://github.com/rcarmo/ios-terax-ai
1•rcarmo•45m ago•0 comments

Outbound

https://store.steampowered.com/app/2681030/Outbound/
1•doener•46m ago•0 comments

FTC tells platforms to comply with Take It Down Act by May 19

https://www.ftc.gov/news-events/news/press-releases/2026/05/ftc-chairman-ferguson-advises-compani...
2•p_stuart82•49m ago•0 comments

The Arch Lie [video]

https://www.youtube.com/watch?v=nemkacOX8-w
1•grigio•51m 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?