frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Japan is gripped by mass allergies. A 1950s project is to blame

https://www.bbc.com/future/article/20260515-the-1950s-blunder-which-causes-mass-hay-fever-in-japan
1•ranit•1m ago•0 comments

Ask HN: Should I learn to code in 2026?

2•vrinda13•2m ago•0 comments

Thioacetone (Wiki)

https://en.wikipedia.org/wiki/Thioacetone
1•sans_souse•4m ago•0 comments

XINF MCP Server

https://xinf.dev/mcp
2•ZeroTerabytes•8m ago•2 comments

Canonical launches Ubuntu Core 26

https://canonical.com/blog/canonical-launches-ubuntu-core-26
1•LopRabbit•9m ago•0 comments

Ben Welsh made an index of all FiveThirtyEight articles on the Internet Archive

https://fivethirtyeightindex.com/
1•ChocMontePy•10m ago•1 comments

'We don't see a robot as a threat: simply another form of presence in the world'

https://english.elpais.com/science-tech/2026-05-16/takeshi-yoro-anatomist-in-japan-we-dont-see-a-...
1•Geekette•12m ago•0 comments

Sci/acc: what happens to science after super-intelligence?

https://willzeng.com/shared/sciacc.html
1•wzeng•14m ago•0 comments

Ubuntu Core 26 targets IoT, offers up to 15 years of security maintenance

https://www.cnx-software.com/2026/05/19/ubuntu-core-26-targets-iot-devices-and-embedded-systems-o...
2•0in•18m ago•0 comments

On Guard! The Story of SAGE [IBM, 1956]

https://www.youtube.com/watch?v=lFGco9ZsFGE
1•doctaj•21m ago•1 comments

Optimize_anything: A Universal API for Optimizing Any Text Parameter

https://arxiv.org/abs/2605.19633
4•LakshyAAAgrawal•23m ago•1 comments

Google accused of pushing 'free for life' G Suite users onto paid plans

https://www.theregister.com/applications/2026/05/19/google-accused-of-pushing-free-for-life-g-sui...
4•0in•24m ago•0 comments

Chairman and Commssioners – CFTC

https://www.cftc.gov/About/Commissioners/index.htm
1•seliopou•33m ago•0 comments

Towards Identifying the Economics and Efficiency of Fuzzers vs. Agents

https://dangerouserrors.com/posts/2026-04-06-towards-identifying-the-economics-of-fuzzers-vs-agents/
2•mooreds•39m ago•0 comments

Writing clear docs when you naturally think in code

https://www.knowledgeowl.com/blog/posts/writing-docs-when-you-think-in-code
1•eigenBasis•40m ago•1 comments

Cavity quantum electrodynamics control of quantum Hall stripes

https://www.nature.com/articles/s41567-026-03287-3
2•bookofjoe•43m ago•0 comments

US Justice Department 'forever' bars IRS from auditing Trump's past tax returns

https://www.theguardian.com/us-news/2026/may/19/trump-irs-settlement-tax-returns
7•embedding-shape•49m ago•1 comments

Poor grip strength linked to greater odds of developing depression

https://medicalxpress.com/news/2026-05-early-poor-strength-linked-greater.html
1•Gaishan•52m ago•0 comments

Stop paying $360/year to access your own email history

https://mailvaulty.com
1•khaledsabae•52m ago•1 comments

LLMs Are Revealing How Low the Bar Is (and Lowering It Even Further)

https://countercraft.substack.com/p/llms-are-revealing-how-low-the-bar
3•crescit_eundo•56m ago•0 comments

State Space Models, Explained Through Code

https://karthik-ragunath-ananda-kumar-blogs.notion.site/State-Space-Models-Explained-Through-Code...
1•eigenBasis•57m ago•0 comments

StartupStarter – we built a company brain so AI can do your work

https://startupstarter.co/
1•SCJB•1h ago•3 comments

Google Cloud has blocked our account, making some Railway services unavailable

https://twitter.com/i/status/2056883076496789854
7•bundie•1h ago•3 comments

An AI Co-Scientist for Hypothesis Generation from Google DeepMind

https://doi.org/10.1038/s41586-026-10644-y
3•car•1h ago•0 comments

Windows on Nintendo 64

https://www.youtube.com/watch?v=eGS9su_inBY
3•cedel2k1•1h ago•0 comments

Everything You Do Is Being Recorded

https://www.theatlantic.com/technology/2026/05/ai-wearable-surveillance-countermeasures/687203/
2•breve•1h ago•1 comments

Railway Blocked by Google Cloud

https://status.railway.com/?date=20260519
83•aarondf•1h ago•15 comments

Google's First AI Smart Glasses Launching This Fall with iPhone Support

https://www.macrumors.com/2026/05/19/google-ai-smart-glasses-iphone-support/
1•mikhael•1h ago•0 comments

I made an App that uses local LLMs to monitor your screen

1•roy3838•1h ago•0 comments

Show HN: The user agents crawling HN today

https://ai.realhackers.org/user_agents.txt
2•Bender•1h ago•1 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?