frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Sign Errors in "The Four Laws of Black Hole Mechanics"

https://arxiv.org/abs/2603.25171
1•mellosouls•5m ago•0 comments

Show HN: Agent Kernel – 3 MD files that turn any AI into a self-aware Agent

https://agent-kernel.dev/?release=v1.23.0
1•obilgic•8m ago•0 comments

Show HN: AgentGuard – An open-source firewall to secure autonomous AI agents

https://github.com/Caua-ferraz/AgentGuard
1•millimercure•10m ago•0 comments

Why the Minnesota Starvation Experiment Doesn't Generalize to Modern Dieting

https://greyenlightenment.com/2026/03/21/why-the-minnesota-starvation-experiment-doesnt-generaliz...
1•paulpauper•13m ago•0 comments

Why most AI projects fail after the demo works

https://thenewstack.io/ai-demo-to-production/
1•msolujic•27m ago•0 comments

Scale AI X Prediction Markets

https://reppo.ai/
1•rgvrmdya•28m ago•1 comments

What's the Deal with Forward Deployed Engineers?

1•rubyrenegade•33m ago•1 comments

I automated my social media outreach with Claude Code

https://github.com/Brainrot-Creations/claude-plugins
2•shubhthorat•34m ago•1 comments

Modeling the AGI Economy

https://continuations.com/modeling-the-agi-economy
2•allenleee•34m ago•0 comments

PICO-8 platformer system: handling every notoriously difficult physics edge case

https://torcado.com/blog/simple-platformer/
2•memalign•35m ago•0 comments

A leak reveals that Anthropic is testing a more capable AI model "Claude Mythos"

https://fortune.com/2026/03/26/anthropic-says-testing-mythos-powerful-new-ai-model-after-data-lea...
3•Tiberium•36m ago•0 comments

Update and learning from Unfudged HN Show last month

https://cyrusradfar.com/thoughts/unfudged-from-frustration-to-open-source
1•cyrusradfar•37m ago•0 comments

YouGov withdraws survey showing rising church attendance in England and Wales

https://www.theguardian.com/world/2026/mar/26/yougov-withdraws-survey-church-attendance-christian...
1•prawn•41m ago•0 comments

Show HN: Scroll bar scuba dude swimming as you scroll

https://scrollbuddy.com/
2•hello12343214•45m ago•3 comments

Show HN: New Causal Impact Library

https://github.com/YuminosukeSato/bsts-causalimpact
1•djwjjtw•45m ago•0 comments

Ask HN: How do you handle breaking changes from third-party APIs in production?

1•kriish2205•46m ago•0 comments

Sycophantic AI decreases prosocial intentions and promotes dependence

https://www.science.org/doi/10.1126/science.aec8352
2•noleary•47m ago•0 comments

Ordinary Americans Take on Mark Zuckerberg and Big Tech in Jury Trials

https://www.thebignewsletter.com/p/normal-americans-say-enough-to-big
1•connor11528•48m ago•0 comments

The Innovation Edge: How Large Companies Lose It and How to Get It Back

https://books.forbes.com/books/the-innovation-edge/
2•teleforce•48m ago•0 comments

Claw Fact Bus: "Facts, Not Commands" for AI Agent Coordination

https://github.com/YangKGcsdms/claw_fact_bus/blob/master/protocol/SPEC.md
1•CarterYang•52m ago•0 comments

From shine to decline: Degradation of over 1M solar PV systems in Germany

https://www.sciencedirect.com/science/article/pii/S0140988326001611
2•toomuchtodo•56m ago•0 comments

Anthropic considers IPO as soon as October

https://www.theedgesingapore.com/news/artificial-intelligence/claude-ai-maker-anthropic-considers...
6•doppp•57m ago•0 comments

Slashing agent token costs by 98% with RFC 9457-compliant error responses

https://blog.cloudflare.com/rfc-9457-agent-error-pages/
5•cezarvil•1h ago•1 comments

The decline and fall of the Roman currency empire

https://www.economist.com/finance-and-economics/2026/03/26/the-decline-and-fall-of-the-roman-curr...
3•andsoitis•1h ago•0 comments

Database Performance Bottlenecks: N+1 Queries, Missing Indexes, Connection Pools

https://howtocenterdiv.com/beyond-the-div/your-database-is-the-bottleneck-not-your-code
3•imkyssa•1h ago•0 comments

Show HN: AI career guides for software career family

https://www.ai-proof-careers.com/industry/software-technology
1•yoyothesheep•1h ago•0 comments

Trump's signature will appear on US dollars

https://www.nytimes.com/2026/03/26/us/politics/trump-signature-us-dollars.html
4•mizzao•1h ago•6 comments

The Failure of the Thermodynamics of Computation(2010)

https://sites.pitt.edu/~jdnorton/Goodies/Idealization/index.html
2•nill0•1h ago•0 comments

Limitations of Serial Cloning in Mammals

https://www.nature.com/articles/s41467-026-69765-7
2•bookofjoe•1h ago•1 comments

XFX Is Fixing the Part of Crypto That Still Feels Like a Wire Transfer

https://www.siliconsnark.com/a-startup-called-xfx-is-fixing-the-part-of-crypto-that-still-feels-l...
1•SaaSasaurus•1h 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•10mo ago

Comments

nip•10mo 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•10mo 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•10mo 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•10mo 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•10mo ago
This is an advertisement
tomrod•10mo ago
I wish this were critical, but it is an ad for MCP.run.
nip•10mo ago
It’s both in my opinion and discussions can stem from the linked article

Many come to HN also for the comments

palmfacehn•10mo ago
Personally, I'm not a fan. I thought the proponent's view might stimulate a discussion.
FunnyLookinHat•10mo 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•10mo 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•10mo 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•10mo ago
This post has too many "shameless plugs" to be taken seriously.
smitty1e•10mo 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?