frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

We're Saying Goodbye to Sora

https://twitter.com/soraofficialapp/status/2036532795984715896
1•octabond•22s ago•0 comments

US expected to send thousands more soldiers to Middle East, sources say

https://www.reuters.com/world/middle-east/us-expected-send-thousands-soldiers-middle-east-sources...
2•cdrnsf•40s ago•0 comments

Wedium – TikTok Made in Europe

https://wedium.social/
2•amai•4m ago•0 comments

Show HN: Bounty_OS the job market BLOWS

https://bountyos.com/pitch/
1•andrewconklin•7m ago•1 comments

Is anybody else bored of talking about AI?

https://blog.jakesaunders.dev/is-anybody-else-bored-of-talking-about-ai/
30•jakelsaunders94•8m ago•4 comments

Wonka's Whipple Scrumptious Fudgemallow Delight (2005)

http://foodisnice.blogspot.com/2005/08/chocolate-wonkas-whipple-scrumptious.html
1•microsoftedging•8m ago•0 comments

The Barium X Window System Toolkit for Common Lisp

https://tomscii.sig7.se/barium/
1•oumua_don17•9m ago•0 comments

Litellm PyPI supply chain attack

https://twitter.com/karpathy/status/2036487306585268612
2•vinnyglennon•10m ago•0 comments

Detecting file changes on macOS with kqueue

https://www.vegardstikbakke.com/kqueue/
1•benhoyt•10m ago•0 comments

Claude Just Opened the Strait

https://www.chinatalk.media/p/how-claude-opened-the-strait-of-hormuz
2•runxiyu•10m ago•0 comments

The Penalty of Leadership

https://nativestudio.substack.com/p/the-penalty-of-leadership
1•exolymph•10m ago•0 comments

Creating a WebAssembly Plugin System for Window Management in Miracle

https://matthewkosarek.xyz/posts/miracle_plugins/
1•matthewkosarek•10m ago•1 comments

Ask HN: What are you using to run dev environments safely on macOS these days?

3•simonw•13m ago•0 comments

OpenAI Plans to Discontinue Support for Sora

https://www.bloomberg.com/news/articles/2026-03-24/openai-plans-to-discontinue-support-for-sora-a...
3•inaros•13m ago•0 comments

Tom Scott Back on YouTube

https://variety.com/2026/tv/news/tom-scott-back-youtube-new-show-england-streaming-nebula-1236696...
2•Tomte•14m ago•0 comments

AI Enablement needs a new kind of investor

https://maxbley.substack.com/p/ai-enablement-needs-a-new-kind-of
1•dylancollins•15m ago•0 comments

GitHub is once again down

https://www.githubstatus.com/incidents/kp06czybl7dw
7•MattIPv4•16m ago•4 comments

Google Just Patented the End of Your Website

https://www.forbes.com/sites/joetoscano1/2026/03/06/google-just-patented-the-end-of-your-website/
2•cdrnsf•16m ago•1 comments

RFC-P001 – An open standard for AI agent identity (did:phanteum:icp:)

https://github.com/phanteum-protocol/rfcs
1•Phanos119•16m ago•0 comments

OpenAI set to discontinue Sora video platform

https://www.reuters.com/technology/openai-set-discontinue-sora-video-platform-app-wsj-reports-202...
5•echelon•17m ago•1 comments

Alexandria on the Tigris – The Forgotten Metropolis

https://www.campus.uni-konstanz.de/en/science-backstage-1/alexandria-on-the-tigris-the-forgotten-...
1•smartmic•18m ago•0 comments

CheSSH – play multiplayer chess over SSH

https://github.com/rasjonell/chessh
1•rasjonell•18m ago•1 comments

Supply Chain Attack in litellm 1.82.8 on PyPI

https://futuresearch.ai/blog/litellm-pypi-supply-chain-attack/
4•vnorilo•19m ago•1 comments

Backlog paralysis made me build a Steam/GOG/Epic app to play *with* your games

https://gamefibre.com/
1•mrtnkl•20m ago•0 comments

I Took a 2012 Mozilla Demo and Turned It into a Production MMO with AI

https://georgelarson.me/writing/2026-03-25-fracture-legacy-modernization/
2•j0rg3•21m ago•0 comments

91-year-old beats Resident Evil Requiem using handwritten notes

https://www.dexerto.com/resident-evil/91-year-old-beats-resident-evil-requiem-using-handwritten-n...
3•blacktulip•23m ago•1 comments

DeepSeek: Conditional Memory via Scalable Lookup

https://arxiv.org/abs/2601.07372
5•born-jre•23m ago•0 comments

Speed up code with pi-autoresearch

https://quanttype.net/p/speed-up-code-with-pi-autoresearch/
1•arcatan•24m ago•0 comments

OpenAI adds open source tools to help developers build for teen safety

https://techcrunch.com/2026/03/24/openai-adds-open-source-tools-to-help-developers-build-for-teen...
2•andrewstetsenko•24m ago•0 comments

Tluma suggests unlimited free Ask AI for Open Source

https://tluma.ai
3•deviscool•25m 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?