frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NeuralNote

https://github.com/DamRsn/NeuralNote
1•hyperific•41s ago•0 comments

Kanban board web app powered by the Redmine API

https://ricardoborges.github.io/RedKanban/
1•r2ob•43s ago•0 comments

Diátaxis: A systematic approach to technical documentation authoring

https://diataxis.fr/
1•ZeroCool2u•2m ago•0 comments

The Banal Horror of Jimmy Fallon

https://www.currentaffairs.org/news/the-banal-horror-of-jimmy-fallon
2•ZeroCool2u•4m ago•0 comments

Jsp

1•bengtsmidenvall•4m ago•0 comments

User Story

https://beyondloom.com/blog/userstory.html
1•tosh•4m ago•0 comments

It's time to talk about my writerdeck

https://veronicaexplains.net/my-first-writerdeck/
1•hggh•6m ago•0 comments

SafeDB MCP – safer read-only database access for AI agents

https://github.com/narekmalk/safedb-mcp
1•Narek88•6m ago•0 comments

Jsp

1•bengtsmidenvall•6m ago•0 comments

D. Murray: I see dangers of AI firsthand – as people make doppelgangers of me

https://nypost.com/2026/05/21/opinion/douglas-murray-i-see-dangers-of-ai-firsthand-as-people-make...
1•bushwart•7m ago•0 comments

Jackson

1•bengtsmidenvall•7m ago•0 comments

CC-Wiki: Turn Claude Code sessions into a shareable knowledge base wiki

https://github.com/tejpalv/cc-wiki
1•tejpalv•8m ago•1 comments

Tesla's Newest Electric Vehicle Could Jolt the Trucking Industry

https://www.nytimes.com/2026/05/19/business/energy-environment/teslas-semi-truck.html
2•bookofjoe•13m ago•2 comments

Show HN: pack-src – pack source code into clean shareable ZIP

https://github.com/muhammadmuzzammil1998/pack-src
1•muzzammildotxyz•15m ago•0 comments

AI Is Being Used to Resurrect the Voices of Dead Pilots

https://techcrunch.com/2026/05/22/ai-is-being-used-to-resurrect-the-voices-of-dead-pilots/
2•Brajeshwar•16m ago•0 comments

Bespoke AI Curriculum to Become AI Operator

https://aios.perabytelabs.com
1•ubp•16m ago•1 comments

Tick Architecture

https://kx.com/blog/tick-architecture-simplicity-and-speed-the-kdb-way/
2•tosh•17m ago•0 comments

There's No Reason to Fear an Invasion of Chinese Electric Vehicles

https://spectator.org/theres-no-reason-to-fear-an-invasion-of-chinese-electric-vehicles/
1•bushwart•18m ago•2 comments

OpenSessions – real time agent tracking in tmux using hooks and process trees

https://github.com/Ataraxy-Labs/opensessions
1•rohanucla•18m ago•1 comments

Anthropic's coordinated vulnerability disclosure dashboard

https://red.anthropic.com/2026/cvd/
2•Levitating•20m ago•0 comments

Cache hit rates of Inference are more meaningful than the headline costs

https://dirac.run/posts/cache-hit-rates-agents
1•GodelNumbering•20m ago•0 comments

Tank leaking toxic chemicals in Orange County will spill or explode

https://abc7.com/live-updates/garden-grove-chemical-tank-emergency-leaking-toxic-chemicals-orange...
5•panda88888•24m ago•1 comments

Aube – Node.js package manager in Rust

https://aube.en.dev/
1•brianzelip•25m ago•0 comments

The Art of Dithering and Retro Shading for the Web

https://blog.maximeheckel.com/posts/the-art-of-dithering-and-retro-shading-web/
1•helloplanets•26m ago•0 comments

Full Show: After "Late Show" Ends, Stephen Colbert Hosts Monroe [video]

https://www.youtube.com/watch?v=7DlF5Cf4VLM
1•hank808•28m ago•2 comments

Wealth, Shown to Scale

https://wealth.ronnycoste.com/
3•Cider9986•33m ago•0 comments

James Murdoch to acquire half of Vox Media in deal reportedly worth $300M

https://www.theguardian.com/media/2026/may/20/james-murdoch-vox-media-deal
2•vidyesh•34m ago•0 comments

The end of free compute is the beginning of better engineering

https://the-ken.com/columns/zero-shot/the-end-of-free-compute-is-the-beginning-of-better-engineer...
1•vidyesh•35m ago•0 comments

Dumbo Could Already Fly

https://www.theintrinsicperspective.com/p/dumbo-could-already-fly
1•Schiphol•37m ago•0 comments

Ask HN: Are these videos from hacked IoT devices?

1•Cider9986•37m ago•2 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?