frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Is This Video a Psyop? With Charlie Warzel

https://www.youtube.com/watch?v=z7lQdkiQfo4
1•handfuloflight•13s ago•0 comments

Show HN: Cardel, a site builder for authors and other solo professionals

https://www.cardel.io
1•Orin-zzBots•40s ago•0 comments

Advanced Singulation Technology – Moving Different Objects with the Celluveyor [video]

https://www.youtube.com/watch?v=MxHdzHDbJz0
1•Brosper•2m ago•0 comments

Building Commerce Agents with Claude

https://claude.com/blog/claude-for-commerce-agents
1•mirzap•3m ago•0 comments

Content Creator

1•pjohnso•3m ago•0 comments

The Post-AI Internet Doesn't Look Great

https://www.jordangoodman.xyz/the-post-ai-internet-doesnt-look-great/
2•speckx•4m ago•0 comments

The OCW Update [video]

https://www.youtube.com/watch?v=WCMFdrTGAEY
1•Brosper•4m ago•0 comments

Sam Altman: Water use for 1 almond same as 38,000 ChatGPT queries [video]

https://www.youtube.com/watch?v=VeizK1M7V7E
2•delichon•4m ago•0 comments

The Nvidia-sized hole in US GDP statistics

https://epoch.ai/publications/the-nvidia-sized-hole-in-us-gdp-statistics
1•gmays•4m ago•0 comments

The Future Is Not Tech-Forward

https://www.thetechbubble.info/p/the-future-is-not-tech-forward
1•cdrnsf•6m ago•0 comments

Unsubscribe links without a login: Django signing

https://belderbos.dev/blog/unsubscribe-without-login-django-signing/
2•jgalt212•7m ago•0 comments

Limiting Overshoot – Navigating exceedance of 1.5°C and pathways towards return

https://www.unep.org/resources/limiting-overshoot-navigating-exceedance
1•matteoraso•8m ago•0 comments

Muse Spark 1.3

https://developer.meta.com/ai/models/muse-spark/
21•bvaldivielso•10m ago•3 comments

Privacy Policies Are Boring

https://nonconfirmed.com/privacy-policy
2•colenikol2•11m ago•0 comments

The Email Verification API

https://resend.com/blog/email-verification-api
4•mirzap•12m ago•0 comments

Study of Brain Proteins Spurs Optimism for Autism Treatments

https://www.nytimes.com/2026/08/27/science/autism-treatments.html
1•bookofjoe•14m ago•1 comments

Muse Spark 1.3

https://www.bloomberg.com/news/articles/2026-09-02/meta-releases-more-powerful-ai-model-edging-cl...
4•guybedo•15m ago•0 comments

New type of dice guarantees no tie when deciding who goes first

https://www.cbc.ca/radio/asithappens/dice-mystery-board-game-9.7328614
3•rdmuser•16m ago•0 comments

You may have heard of nohello.net, but have you heard of yesmuppets.net?

https://yesmuppets.net
3•haydenbarnes•18m ago•0 comments

Introducing Muse Spark 1.3

https://research.meta.ai/blog/introducing-muse-spark-1-3
13•scrlk•19m ago•0 comments

Scientists Observe Einstein's Gravity in the Quantum World

https://thequantuminsider.com/2026/09/02/scientists-observe-einsteins-gravity-in-the-quantum-world/
2•geox•21m ago•0 comments

SF's Tech Right Debates the Ideal Dictator

https://bayareacurrent.com/sfs-tech-caesar/
3•counteroptimize•22m ago•0 comments

Show HN: Sol, a fast, powerful music player for macOS, with Subsonic support

https://sol.fulltimefeline.com/
2•fulltimefeline•22m ago•0 comments

Clankers and Data Races

https://www.tbray.org/ongoing/When/202x/2026/09/01/Un-Racing
2•worik•23m ago•0 comments

Show HN: StealthOS, an iOS privacy sandbox with local AI and Tor

https://www.stealthos.app/
2•steffi_oliver•24m ago•0 comments

Explainable deep learning improves human mental models of self-driving cars

https://www.nature.com/articles/s41586-026-10950-5
1•aanet•25m ago•1 comments

Framamèmes

https://framamemes.org/en/
1•rdmuser•25m ago•0 comments

It's getting harder to get hired on HN

https://112358132134.xyz/blog/harder-to-get-hired-on-hn/
2•sdsd•25m ago•2 comments

Persistent Continuity MCP

https://api.willow-intelligence.com/mcp
2•haleykurtz•26m ago•1 comments

Uber to cut 3,300 corporate jobs in management overhaul

https://www.theguardian.com/technology/2026/sep/02/uber-to-cut-3300-corporate-jobs-in-management-...
3•tjwds•27m 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•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?