frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

UK charities count the cost of Beacon CRM cyberattack

https://www.theregister.com/security/2026/08/05/uk-charities-count-the-cost-of-beacon-crm-cyberat...
1•jstanley•35s ago•0 comments

Don't use your phone while you poop

https://nate.spot/no-phone-while-poop/
1•ExMachina73•1m ago•0 comments

At the altar of AI capex, Google is sacrificing the golden goose

https://twitter.com/MaxAnderson/status/2080229375773941871
1•wyclif•3m ago•0 comments

We mapped every data centre on Earth [video]

https://www.youtube.com/watch?v=8M3MciEmC5c
1•skibz•3m ago•0 comments

I built a voice agent that resolves IT/HR support issues end-to-end

https://www.youtube.com/watch?v=GffeCdNQ5JQ
1•ManoBharathi93•3m ago•0 comments

Prinevo Memory: A Domain-Pluggable Context Graph for Long-Term Agent Memory

https://drive.google.com/file/d/1dqX6t-r03SKalM9Fcvz6g0Ixp-8QLXqZ/view?usp=sharing
1•sohitkeshri•5m ago•0 comments

Gentoo bugzilla closed due AI bot scraper overload

https://social.treehouse.systems/@mgorny/117058483039362779
2•happosai•11m ago•0 comments

Banning data centers would blow up the U.S. economy

https://www.noahpinion.blog/p/banning-data-centers-would-blow-up
1•nedruod•13m ago•0 comments

Which editing tool using in 2026?

1•karam_hn•17m ago•0 comments

AI-generated stories rated better quality than human-written ones, study finds

https://www.theguardian.com/technology/2026/aug/05/ai-generated-stories-rated-better-quality-than...
2•Risse•18m ago•0 comments

Show HN: Sovereign Engine – Local-first intent engine in Rust and Tauri

https://github.com/Sovereign34/sovereign-engine
1•Sovereign34•18m ago•0 comments

The National Design Studio Became a DOGE Landing Pad. Now 'Big Balls' Is Hiring

https://www.wired.com/story/national-design-studio-doge-recruiting/
1•robbiet480•19m ago•0 comments

The Microstructure of Wealth Transfer in Prediction Markets

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7217640
1•jonbecker•26m ago•0 comments

AI's Latest Rocket Ship Is an Old School, 28-Year-Old Data Company

https://www.forbes.com/sites/iainmartin/2026/08/06/ais-latest-rocket-ship-is-an-old-school-28-yea...
1•Michelangelo11•27m ago•0 comments

The Last New Word

https://www.lucasfcosta.com/fiction/the-last-new-word
2•lucasfcosta•31m ago•0 comments

Triton: DirectX 11 Driver for QEMU

https://blog.getutm.app/2026/introducing-triton-directx-11-driver-for-qemu/
2•electricant•33m ago•0 comments

A private curl-to-Python converter that runs in the browser

https://www.endpoint51.com/curl-to-python/
1•endpoint51•36m ago•1 comments

I run a 9-model LLM council to write a financial newsletter. What breaks

https://marketdaily.ai/blog/eng-llm-council-judge-en-202608
2•delvinchang•37m ago•0 comments

Voyager 1 FDS Computer Emulator

https://zaneham.github.io/voyager-fds-emulator/
2•rahen•38m ago•0 comments

A domain can now say it is for sale, in DNS

https://specification.website/spec/foundations/for-sale-dns/
2•shaunpud•40m ago•0 comments

Show HN: Patchward-check – list the test expectations a diff removes

https://pypi.org/project/patchward-check/
1•kolesnikov-arch•41m ago•0 comments

A Generation on Antidepressants Searches for the Exit

https://www.nytimes.com/2026/08/07/opinion/antidepressants-ssris-side-effects-drugs-maha.html
2•bookofjoe•49m ago•1 comments

Sleep Alters the Velocity of Physiological Brain Pulsations in Humans

https://advanced.onlinelibrary.wiley.com/doi/10.1002/advs.202503745
1•cs1996•50m ago•0 comments

Hacker News MCP

https://hackernews.marcokittel.de
2•evlute•50m ago•1 comments

Downfall

https://downfall.page/
4•conferza•53m ago•0 comments

ROMbug Onion: A Tor Browser with Onion Routing, Privacy and a Separate Identity

https://rombugonion.com/
1•chainbuilder•53m ago•0 comments

Superdna – analyze your DNA raw file locally

https://github.com/Wolg/superdna
2•wolg•53m ago•0 comments

How Cleaning up space debris could grow to become a big business

https://www.cnbc.com/2026/08/08/space-debris-junk-spacex-rocket-moon-crash.html
1•ck2•54m ago•1 comments

The Caretakers

https://leejo.github.io/2026/08/08/caretakers/
1•leejo•54m ago•0 comments

Marimomono: A Marimo Simulator

https://www.zeldas.page/marimo
1•zeldahessler•57m 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?