frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Original Sony MiniDisc Announcement (1991)

https://www.minidisc.org/sony_announcement.html
1•Tomte•1m ago•0 comments

LLM models are not ready for orchestrating many agents

1•daemon_9009•1m ago•0 comments

"Run the agent program" in 1978

https://www.youtube.com/watch?v=4xPzYmj1QLs
1•Jonovono•8m ago•1 comments

Privacy is becoming more of a privilege

https://blog.avas.space/privacy-privilege/
1•speckx•9m ago•0 comments

OpenAI and Malta partner to bring ChatGPT Plus to all citizens

https://openai.com/index/malta-chatgpt-plus-partnership/
5•bookofjoe•11m ago•0 comments

The Quiet Renovation at Bitwarden

https://blog.ppb1701.com/the-quiet-renovation-at-bitwarden
2•DaSHacka•12m ago•0 comments

What breaks when you ship Next.js on Cloudflare Workers

https://finterm.xyz/blog/nextjs-on-cloudflare-workers
1•qemuguest•15m ago•1 comments

Microsoft Exchange Server Spoofing Vulnerability New

https://msrc.microsoft.com/update-guide/vulnerability/CVE-2026-42897
1•doener•15m ago•0 comments

Pretext-breaker – a configurable block-breaker easter egg for React apps

https://github.com/y-lakhdar/pretext-breaker
1•ylakhdar•16m ago•0 comments

Microsoft Exchange: Zero-day vulnerability is being attacked

https://www.heise.de/en/news/Microsoft-Exchange-Zero-day-vulnerability-is-being-attacked-11295808...
1•doener•16m ago•0 comments

Show HN: I stripped GNSS/BT/NFC from GrapheneOS and built a RAM-only messenger

https://arpokrat.com
1•anthonype•18m ago•0 comments

ClickBook – Offline Android eReader with local LLM inference via llama.rn

https://play.google.com/store/apps/details?id=com.clickbook.reader&hl=en_US
1•elcooo•20m ago•1 comments

A History of Quality in Software Engineering

https://roberthopman.com/history-of-quality-in-software-engineering/
1•speckx•21m ago•0 comments

Create anime-style videos from your ideas in minutes

https://www.gocrazyai.com/
1•gocrazyai•22m ago•0 comments

Breaking the code: Multi-level learning in the Eurovision Song Contest

https://royalsocietypublishing.org/rsos/article/13/4/251727/481541/Breaking-the-code-Multi-level-...
1•Tomte•28m ago•0 comments

Linux devs are fighting the new age-gated internet

https://www.theverge.com/tech/930573/age-verification-bills-linux-open-source
2•speckx•30m ago•1 comments

Show HN: Stoic AgentOS - Open-source operating system for AI agent fleets

https://github.com/benjaminkernbaum-ux/stoic-agentos
1•bk0•33m ago•0 comments

Show HN: Mpvc, minimal music player for controling mpv from the shell

https://gmt4.github.io/mpvc/
1•gmt4•34m ago•0 comments

Swatch Royal Pop: A Grotesque Spectacle of the Absurd

https://www.wespiser.com/posts/2026-05-16-spectacle-absurd.html
1•wespiser_2018•35m ago•0 comments

Kelvin versioning

https://wiki.xxiivv.com/site/kelvin_versioning.html
1•manwithaplan•45m ago•1 comments

A multiplicity of tomorrows: Imagining 299 climate intervention futures

https://www.sciencedirect.com/science/article/pii/S1462901126000626
1•rbanffy•49m ago•0 comments

American Keiretsu: A World of Increasing Interconnectivity (2025)

https://www.lom.com/american-keiretsu-a-world-of-increasing-interconnectivity/
1•walterbell•49m ago•0 comments

A Pragmatic Beginner's Guide to Introducing AI to Your Engineering Workflow

https://jeffammons.com/2026/05/05/a-pragmatic-beginners-guide-to-introducing-ai-to-your-engineeri...
2•jammons•49m ago•0 comments

Interpolatable Archives

https://goodinternet.substack.com/p/on-interpolatable-archives-clean
1•walt74•50m ago•1 comments

Show HN: I built a screen recorder that captures console logs, requests and more

https://userplane.io/
1•wizenheimer•51m ago•0 comments

America is experiencing a productivity miracle

https://www.economist.com/finance-and-economics/2026/05/11/america-is-experiencing-a-productivity...
2•andsoitis•51m ago•1 comments

Collective climate geoengineering futures through technology foresight exercise

https://www.sciencedirect.com/science/article/pii/S2214629625004104
1•rbanffy•52m ago•0 comments

Prometheus and Christ

https://hommepresse.substack.com/p/prometheus-and-christ
1•paulpauper•53m ago•0 comments

Show HN: Aggregating votes from US Congress representatives

https://usvote.fyi/
1•readonkeyless•53m ago•0 comments

If you can't get a job today, it's your fault

https://auren.substack.com/p/if-you-cant-get-a-job-today-its-your
4•paulpauper•53m ago•3 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•12mo ago

Comments

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

Many come to HN also for the comments

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