frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

AI: The Falsity of Comparison

https://syntheticauth.ai/posts/ai-the-falsity-of-comparison
1•zerolayers•52s ago•0 comments

How to Write an Effective Software Design Document

https://refactoringenglish.com/excerpts/write-an-effective-design-doc/
1•mtlynch•1m ago•0 comments

'Kind of miracle solution': How Paris is harnessing the Seine to replace air-con

https://www.theguardian.com/environment/2026/jun/26/underground-revolution-seine-cooling-network-...
1•montalbano•1m ago•0 comments

Ante: A New Way to Blend Borrow Checking and Reference Counting

https://verdagon.dev/blog/ante-blending-borrowing-rc
1•ingve•2m ago•0 comments

Model Context Protocol Explained in 3 Levels of Difficulty

https://machinelearningmastery.com/model-context-protocol-explained-in-3-levels-of-difficulty/
1•eigenBasis•2m ago•0 comments

Show HN: Sonar, local cited codebase briefings tailored to your role

https://github.com/gautamdhameja/sonar
1•gautamdhameja•2m ago•0 comments

EU introduces €3 customs charge on small parcels to curb cheap Chinese imports

https://www.theguardian.com/world/2026/jun/29/eu-introduces-customs-charge-on-small-parcels-to-cu...
1•theanonymousone•2m ago•0 comments

The Octopus Conundrum

https://ambrook.com/offrange/fish/the-octopus-conundrum
1•surprisetalk•4m ago•0 comments

Some thoughts from inside the AI bubble

https://systemsoflife.substack.com/p/some-thoughts-from-inside-the-ai
1•mday27•4m ago•0 comments

FSD v14 "Lite" rolling out to HW3 customers

https://twitter.com/aelluswamy/status/2071487485172134131
1•k2xl•5m ago•0 comments

Strategy Says It May Sell Up to $1.25B of Bitcoin

https://www.bloomberg.com/news/articles/2026-06-29/strategy-says-it-may-sell-up-to-1-25-billlion-...
4•helsinkiandrew•7m ago•1 comments

Ask HN: Why don't bug reporting systems provide workarounds as rewards to users?

1•amichail•8m ago•0 comments

Show HN: Fognitix – AI browser with parallel autonomous agents on the browser

https://www.fognitix.com/
2•fognitix•8m ago•2 comments

AI Writing Code Makes Premature Optimization Viable

https://zacharyernst.medium.com/how-ai-software-development-changes-the-premature-optimization-pa...
1•zernst3•10m ago•0 comments

Show HN: Running a vision model on every screenshot on-device

https://github.com/ayushh0110/ScreenMind/blob/main/README.md
6•alexkarpathy•10m ago•0 comments

I Understand Nostalgia

https://yordi.me/i-finally-understand-nostalgia/
1•speckx•10m ago•0 comments

Boomer Radio

https://www.myboomerradio.com/
1•mooreds•12m ago•0 comments

Ask HN: GitHub OAuth Flows Failures?

1•jakub_g•12m ago•0 comments

Why don't people use chatbots?

https://www.pewresearch.org/internet/2026/06/17/why-dont-people-use-chatbots/
1•mooreds•12m ago•0 comments

Time to Power

https://cloudedjudgement.substack.com/p/clouded-judgement-62626-time-to-power
1•mooreds•13m ago•0 comments

When "Hello" Means Trouble: The Telegram Scam Epidemic

https://medium.com/@brothke/when-hello-means-trouble-the-telegram-scam-epidemic-1fdc042607bf
1•benrothke•13m ago•0 comments

Gor Nishanov (1971-2026)

https://herbsutter.com/2026/06/28/gor-nishanov-1971-2026/
2•leeter•15m ago•1 comments

Show HN: Certificate Transparency search that groups related certificates

https://certobserver.com/ct-search
1•rellem•15m ago•0 comments

Show HN: Lorentzian CSS Duality in Causal Diamond Quantum Error-Correcting Codes

https://github.com/ynnk-research/A-Lorentzian-CSS-Duality-in-Causal-Diamond-Quantum-Error-Correct...
2•ynnk•16m ago•0 comments

As the Tide Turns Against Putin, Beware the Drowning Man

https://foreignpolicy.com/2026/06/25/russia-ukraine-war-putin-escalation-nato-europe/
3•baxtr•18m ago•1 comments

Europe heatwave halts Leipzig trams as soaring temperatures damage tracks

https://www.firstpost.com/world/europe-heatwave-halts-leipzig-trams-as-extreme-heat-damages-track...
2•no_news_is•18m ago•2 comments

Farming is Why Humanity is Fucked

https://brennan.day/farming-is-why-humanity-is-fucked/
1•surprisetalk•19m ago•0 comments

Ask HN: Has open source become the best business model?

1•adithyaharish•22m ago•0 comments

We Reduced Development Time by 50%, Users Didn't Notice

1•Semi_hayat•23m ago•0 comments

The Secret Life of Computers – The Chip Letter

https://thechipletter.substack.com/p/the-secret-life-of-computers
1•rbanffy•23m 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?