frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Does anyone still read books?

https://MyBookList.club
1•BigBalli•42s ago•0 comments

Emotional Eating Elucidated in Fruitfly

https://www.nature.com/articles/s41586-026-10306-z
1•vi_sextus_vi•4m ago•1 comments

Bee Dancing Is Better with the Right Audience

https://today.ucsd.edu/story/bee-dancing-is-better-with-the-right-audience
1•gmays•4m ago•0 comments

GitHub expands AI bug detection, but recent outages hit Actions, API, and Git

https://www.bleepingcomputer.com/news/security/github-adds-ai-powered-bug-detection-to-expand-sec...
1•k_roy•12m ago•0 comments

Textual

https://textual.textualize.io/
2•bjornroberg•13m ago•1 comments

Designed to Be Specialists

https://aworkinglibrary.com/writing/designed-to-be-specialists
1•herbertl•14m ago•0 comments

GitKingdom – GitHub repos in a procedurally generated fantasy world

https://www.gitkingdom.com/
1•robotreport•15m ago•0 comments

A Year with the Framework 13

https://kevquirk.com/a-year-with-the-framework-13
3•herbertl•16m ago•0 comments

Quiver – diff viewing hasn't changed for decades, we still squint on lines

https://ataraxy-labs.github.io/quiver/
1•abha2008•18m ago•0 comments

Quimonit

https://quimonit.com/
1•ccastigl•20m ago•0 comments

Show HN: MacParakeet – Local voice dictation and transcription for Mac (GPL-3.0)

https://github.com/moona3k/macparakeet
1•moona3k•22m ago•0 comments

A Way to Call a Satellite

https://www.callasatellite.dev
1•UPLIFTINGs•26m ago•0 comments

Per-Tool Sandboxing for AI Agents: Why One Sandbox Is Not Enough

https://multikernel.io/2026/03/25/sandlock-mcp-per-tool-sandboxing/
1•wang_cong•33m ago•0 comments

beanstalkd

https://beanstalkd.github.io/
2•tambourine_man•36m ago•0 comments

Composer 2 Technical Report [pdf]

https://cursor.com/resources/Composer2.pdf
1•handfuloflight•37m ago•0 comments

Pfizer Lyme disease vaccine fails trial, company to seek FDA approval

https://www.cnbc.com/2026/03/23/pfizer-lyme-disease-vaccine-trial-fda-approval.html
1•gmays•38m ago•1 comments

Extendr.dev – new vibecoding tool for Chrome extensions

https://www.extendr.dev/
1•hrsinghvi•40m ago•1 comments

CP-SAT finite-state machine that provisions infrastructure without any LLM calls

https://circuitlm.vercel.app/,https:/github.com/toxzak-svg/circuit_lm
1•zwmaronek•41m ago•0 comments

Modern and Antique Technologies Reveal a Dynamic Cosmos

https://www.quantamagazine.org/how-modern-and-antique-technologies-reveal-a-dynamic-cosmos-20260202/
1•zeristor•44m ago•1 comments

What Crystals Older Than the Sun Reveal About the Start of the Solar System

https://www.quantamagazine.org/what-crystals-older-than-the-sun-reveal-about-the-start-of-the-sol...
1•zeristor•46m ago•0 comments

China Bars Executives at Meta-Owned AI Company from Leaving Country

https://www.washingtonpost.com/national-security/2026/03/25/meta-manus-china-executives-banned/
4•jandrewrogers•47m ago•2 comments

The Pragmatic Vibe Coder

https://www.amazon.com/dp/B0GTPS8GDF
1•antithtic•52m ago•1 comments

Unusual trading activity raises possibility of grave national security breach

https://www.ms.now/opinion/trump-iran-insider-trading-oil-markets
2•pseudolus•57m ago•0 comments

FileCrank – +134 free tools for PDFs, images, A&V and Dev

https://filecrank.app/en
2•robinhoodproj•58m ago•0 comments

False claims in a widely-cited paper. No corrections. No consequences

https://statmodeling.stat.columbia.edu/2026/03/24/false-claims-in-a-published-no-corrections-no-c...
21•qsi•59m ago•7 comments

Makeing a Slot

1•Asheyyy•1h ago•0 comments

Genes May Control Your Longevity, However Healthily You Live

https://www.nytimes.com/2026/01/29/health/longevity-lifespan-age-genes.html
7•paulpauper•1h ago•0 comments

Quantifying climate loss and damage consistent with a social cost of carbon

https://www.nature.com/articles/s41586-026-10272-6
2•gnabgib•1h ago•0 comments

Iran avoiding talks with U.S.; Trump proposal to end war being reviewed

https://www.cnbc.com/2026/03/25/iran-war-us-trump.html
2•shinryudbz•1h ago•1 comments

Show HN: Vectimus – Cedar policy enforcement for AI coding agents

https://github.com/vectimus/vectimus
2•JXavierH•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?