frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

What AI Models for War Look Like

https://www.wired.com/story/ai-model-military-use-smack-technologies/
1•jonbaer•2m ago•0 comments

Press-One: Auto-accept every Claude Code prompt

https://github.com/HalfEmptyDrum/press-one
6•EmptyDrum•4m ago•1 comments

Show HN: Envelope – Open-source email API for AI agents (BYO email, MCP)

https://github.com/tymrtn/U1F4E7
1•tmrtn•5m ago•0 comments

Can the Dictionary Keep Up?

https://www.thenation.com/article/culture/stefan-fatsis-dictionary-history/
1•pepys•5m ago•0 comments

Iran War; Pyrrhic Victory

https://waterofmarch.substack.com/p/iran-war-pyrrhic-victory
1•PonDiDancefloor•5m ago•0 comments

This Intel Panther Lake mini PC is as thin as a laptop

https://liliputing.com/this-intel-panther-lake-mini-pc-is-as-thin-as-a-laptop/
1•rezaprima•5m ago•0 comments

Ask HN: What are your favorite books?

1•amunozo•8m ago•0 comments

Emulation of the Drosophila Fly Brain

https://github.com/eonsystemspbc/fly-brain
1•dtj1123•8m ago•0 comments

M5 Max LLM Benchmarks Against M3 Ultra

https://creativestrategies.com/research/m5-max-chiplets-thermals-and-performance-per-watt/
1•abhikul0•9m ago•1 comments

Ask HN: How are you reviewing code at work these days?

1•curiousgal•9m ago•0 comments

His Mother Vanished When He Was 14. 33 Years Later, He Found Her

https://www.nytimes.com/2026/03/09/us/antonio-wiley-missing-mother-found.html
1•emmabotbot•10m ago•0 comments

If Anyone Builds It, Everyone Dies

https://ifanyonebuildsit.com/
2•intenex•10m ago•1 comments

Talking to LLMs Through Nintendo Handhelds

https://substack.com/home/post/p-190447769
1•ghostpeony•10m ago•0 comments

It is recommended to create a forum solely for OpenClaw to post information

https://clawtavern.com
1•WilliamSui•11m ago•1 comments

Investigation complete – Unable to diagnose with current information

https://lapcatsoftware.com/articles/2026/3/2.html
1•7777777phil•12m ago•0 comments

20% Better–Personalized DNA wellness reports from your 23andMe/Ancestry raw data

https://www.20percentbetter.co
1•dahomiequan•16m ago•0 comments

Ask HN: Full‑stack dev choosing between AI and Blockchain – what skills matter?

1•rishuishind•18m ago•0 comments

Yann LeCun's AMI Labs raises $1.03B to build world models

https://techcrunch.com/2026/03/09/yann-lecuns-ami-labs-raises-1-03-billion-to-build-world-models/
2•twalichiewicz•22m ago•0 comments

The Darkness from the Darkness

https://thebaffler.com/latest/the-darkness-from-the-darkness-giraldi
1•lermontov•26m ago•0 comments

A Swiss Paperwork Massacre: Why We Fled to Stripe

https://octigen.com/blog/posts/2026-03-09-payment-nightmare/
4•mrgraziani•35m ago•1 comments

A gate that stops LLMs asserting facts not present in the source document

https://narrativelogic.co.uk/tommy.html
1•davidtome•35m ago•1 comments

Short films made from brain activity of mice aim to see how they see

https://www.theguardian.com/science/2026/mar/10/short-films-brain-activity-mice-how-they-see-world
1•sans_souse•35m ago•0 comments

For AI devs and AI startups

1•CostsentryAI•37m ago•0 comments

Ion trapping doubles memory in neuromorphic semiconductors

https://www.dongascience.com/en/news/76562
1•benewton•40m ago•0 comments

Backup Exchange Online Mailbox

https://www.crashplan.com/glossary/what-is-exchange-online-backup/
1•santoshcp•44m ago•0 comments

Demo: Frostsnap 2-of-3 Distributed Key Generation and Backups

https://frostsnap.com/demo/
1•frostsnap•47m ago•0 comments

Can pumping chemicals into the ocean help stop global heating?

https://www.theguardian.com/environment/2026/mar/10/sodium-hydroxide-ocean-global-heating-solution
1•philbo•47m ago•1 comments

Advanced Machine Intelligence (AMI) announces $1.03B funding round

https://amilabs.xyz/updates
2•matthieu_bl•47m ago•0 comments

Anthropic sues Pentagon over alleged AI ‘blacklist’ on Claude

https://vechron.com/2026/03/anthropic-files-lawsuit-against-pentagon-over-ai-blacklist-and-claude...
1•GeorgeWoff25•48m ago•0 comments

Ten Signs a Claimed Mathematical Breakthrough Is Wrong (2008)

https://scottaaronson.blog/?p=304
2•adunk•51m 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•9mo ago

Comments

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

Many come to HN also for the comments

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