frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Dark matter experiment reaches ultracold milestone

https://phys.org/news/2026-03-dark-ultracold-milestone.html
1•Brajeshwar•1m ago•0 comments

Parents think they know how kids use AI. They don't

https://buzznews.com/news/3a6c97be-daa5-42b8-9ac0-48e7f25428bb
1•buzznewswebsite•1m ago•0 comments

Show HN: A single pane of glass for Claude Code

https://github.com/jasonwilmot/singlepane
1•jasondigitized•1m ago•0 comments

Show HN: Parsing hostile industrial data in 64MB WASM sandboxes

https://ingelt.com
1•bneb-dev•1m ago•0 comments

Mere: A New Package Manager

https://merelinux.org/posts/new-pm/
2•jhuntwork•1m ago•0 comments

Is Music Just Sound? A creative technologist's perspective on AI-generated music

https://perthirtysix.com/is-music-just-sound
1•datadrivenangel•3m ago•0 comments

MiniMax M2.7 (200K context, $0.30/1.20) released

https://openrouter.ai/minimax/minimax-m2.7
1•pixel_popping•4m ago•0 comments

The fiery, deadly crashes involving the Tesla Cybertruck

https://www.theguardian.com/technology/2026/mar/18/tesla-cybertruck-crashes-battery-fires
1•t-vi•4m ago•0 comments

We Are Building Gods

https://richhaase.com/blog/2026-03-08-we-are-building-gods/
1•richhhh•4m ago•0 comments

Doxxxed.fun – First KYC-verified token launchpad on Solana, seeking acquisition

https://doxxed.fun
1•JosephBearbower•4m ago•1 comments

Show HN: Open-source status pages for Agents (Rails 8 and SQLite)

https://ups.dev/
1•codenamev•5m ago•0 comments

Defense Intelligence Reference Documents

https://spherebeingalliance.com/blog/defense-intelligence-reference-documents.html
1•beeburrt•5m ago•0 comments

The Org Chart Is the Product: Software as Case Study for Intellectual Work

https://www.jimmont.com/org-chart-is-the-product
1•jimmont•5m ago•0 comments

Show HN: Weekly Updates – Multiplayer productivity with monthly leaderboards

https://personal-standup.vercel.app/
1•baristaGeek•6m ago•0 comments

William Gibson vs. Margaret Thatcher

https://pluralistic.net/2026/03/17/technopolitics/#original-sin
1•cainxinth•6m ago•0 comments

Show HN: Cloak – .env on disk has fakes, your editor shows them (CLI and VSCode)

https://getcloak.dev
1•wam_app•6m ago•0 comments

Show HN: We built AI agents that reduce mortgage processing from 18 days to 3–5

https://app.simplai.ai/register
1•SimplAI_ai•7m ago•0 comments

Ask HN: What can we do about explosion of self promotion in HN comments

3•dominotw•9m ago•4 comments

Informo.es Normativa europea 2/2023

https://informo.es
1•lucasvicentec•9m ago•1 comments

I built an agent that tells you when a GitHub bug is killing your Stripe revenue

https://getparse.io/
1•sebasb•10m ago•1 comments

Chinese users are using an imperial China court system to manage AI agents

https://www.chinatalk.media/p/taking-the-throne-as-openclaw-emperors
1•possiblelion•11m ago•0 comments

Windows stack limit checking retrospective: x86-32 also known as i386

https://devblogs.microsoft.com/oldnewthing/20260317-00/?p=112144
1•ibobev•11m ago•0 comments

A single model optimized the parser. The real bottleneck was governance

https://council.expressible.ai/blog/why-single-model-ai-gets-architecture-wrong
1•veniyer•12m ago•1 comments

Show HN: Zora, AI agent with compaction-proof memory and a runtime safety layer

https://github.com/ryaker/zora
1•ryaker•12m ago•0 comments

Firefox gets mascot Kit and free VPN

https://www.heise.de/en/news/Firefox-gets-mascot-Kit-and-free-VPN-11215439.html
1•doener•13m ago•0 comments

Reinventing aliasing XOR mutability and lifetimes

https://purplesyringa.moe/blog/reinventing-aliasing-xor-mutability-and-lifetimes/
1•ibobev•13m ago•0 comments

I built a specialized A4 React document editor for immigration dossiers

1•macolabs•13m ago•0 comments

Starlink Satelite Tracker

https://heavens-above.com/StarLink.aspx
1•amanverasia•15m ago•0 comments

Machine Payments Protocol – An open protocol for machine-to-machine payments

https://mpp.dev/
1•colesantiago•16m ago•0 comments

Brain Implants Let Paralyzed People Type Nearly as Fast as Smartphone Users

https://singularityhub.com/2026/03/17/brain-implants-let-paralyzed-people-type-with-thought-alone...
1•Brajeshwar•16m 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?