frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

PyCon US 20216

https://us.pycon.org/2026/
1•vismit2000•1m ago•0 comments

Steno – Compressed memory with RAG for AI agents

https://github.com/KultMember6Banger/steno
1•KM6B•7m ago•1 comments

Zoom teams up with World to verify humans in meetings

https://techcrunch.com/2026/04/17/zoom-teams-up-with-world-to-verify-humans-in-meeting/
1•rfarley04•9m ago•0 comments

Ludum Dare will officially end in October 2028

https://www.gamedeveloper.com/production/ludum-dare-will-officially-end-in-october-2028
2•matthew_hre•12m ago•0 comments

Researchers Stole $10k from MKBHD's Locked iPhone

https://www.macrumors.com/2026/04/15/apple-pay-visa-transit-exploit/
3•zacharyozer•14m ago•0 comments

Simple Machines

https://en.wikipedia.org/wiki/Simple_machine
1•ogogmad•15m ago•0 comments

Generating Hierarchical JSON Representations of Scientific Sentences Using LLMs

https://arxiv.org/abs/2603.23532
1•PaulHoule•17m ago•0 comments

How Australia Stopped the Boats

https://worksinprogress.co/issue/how-australia-really-stopped-the-boats/
2•barry-cotter•17m ago•1 comments

Northern Lights Visible in US Friday and Saturday

https://www.livescience.com/space/the-sun/northern-lights-may-be-visible-from-several-us-states-f...
3•dlx•20m ago•0 comments

Do I Stop Learning Coding? DSA?

1•s_u_d_o•23m ago•4 comments

Predicting RNA activity expands therapeutic possibilities

https://phys.org/news/2026-03-rna-therapeutic-possibilities.html
2•PaulHoule•25m ago•0 comments

Beanie Is Designed to Read Your Thoughts

https://www.wired.com/story/this-beanie-is-designed-to-read-your-thoughts/
2•pedalpete•31m ago•1 comments

Show HN: Agentic Dev – AI dev-tools news, curated daily by Claude

https://agenticdev.blog/
2•beeswaxpat•31m ago•0 comments

The Publishing Mystery That No One Wants to Talk About

https://www.theatlantic.com/books/2026/04/who-really-wrote-autistic-author-woody-brown-novel/686814/
2•JumpCrisscross•39m ago•0 comments

The DNA Fix for Aging

https://www.theatlantic.com/health/2026/04/beyond-inheritance-excerpt-roxanne-khamsi/686831/
2•JumpCrisscross•39m ago•0 comments

Your Computer Isn't Yours

https://sneak.berlin/20201112/your-computer-isnt-yours/
9•orionblastar•42m ago•1 comments

Cloudfare Mesh

https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-mesh/
4•simojo•42m ago•0 comments

There is no you in your brain – your identity is a "society of the mind"

https://bigthink.com/books/our-brains-our-selves/
5•lschueller•42m ago•2 comments

OpenAI Says Codex Agents Are Running Its Data Platform Autonomously

https://www.forbes.com/sites/victordey/2026/04/17/openai-says-codex-agents-are-running-its-data-p...
2•tanelpoder•45m ago•0 comments

Release PiClaw v1.8.1 – Heat

https://github.com/rcarmo/piclaw/releases/tag/v1.8.1
2•rcarmo•46m ago•0 comments

Vibecheck: AI Web Design Slop Fingerprinter

https://www.vibecheck.fail/
3•not-chatgpt•49m ago•0 comments

Can a browser with user and clickbait queries protect from the attention economy

3•pcwir•53m ago•1 comments

John Wick, Madara Uchiha, characters that take on entire armies by themselves

https://www.juanmanarmy.com/
2•jespinoza17•55m ago•0 comments

Healing the Invisible Scars of Gen Z's Over-Sanitized World

https://www.wsj.com/health/wellness/healing-the-invisible-scars-of-gen-zs-over-sanitized-world-61...
3•nkzednan•57m ago•0 comments

Stop using naive RAG – adding relationships to AI context

2•eduardobenck•59m ago•0 comments

New German search engine lets people check whether their relatives were Nazis

https://www.cnn.com/2026/04/17/europe/german-search-engine-nazi-relatives-scli-intl
4•1659447091•59m ago•2 comments

Shuttered startups are selling old Slack chats and emails to AI companies

https://www.fastcompany.com/91528808/shuttered-startups-are-selling-old-slack-chats-and-emails-to...
5•doctaj•1h ago•2 comments

Investors salivate over SpaceX's mega IPO, the company reportedly lost $5B

https://moneywise.com/investing/stocks/as-investors-await-spacexs-ipo-elon-musks-aerospace-compan...
6•rawgabbit•1h ago•1 comments

Japan's Cherry Blossom Database, 1,200 Years Old, Has a New Keeper

https://www.nytimes.com/2026/04/17/climate/japan-cherry-blossom-database-scientist.html
4•caycep•1h ago•0 comments

OSS code review, in the era of LLMs

https://blog.ezyang.com/2026/04/oss-code-review-in-the-era-of-llms/
2•matt_d•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•11mo ago

Comments

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

Many come to HN also for the comments

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