frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

FusionAuth Is Down

https://status.fusionauth.io/incidents/7v148g0r2t53
1•komape•30s ago•0 comments

Engineering Leader's Guide to Outcome-Based Pricing

https://www.thewitn.com/blog/an-engineering-leaders-guide-to-implementing-outcome-based-pricing
1•georgekats•1m ago•0 comments

OpenInterstate – Canonicalized U.S. Interstate Highway Data

https://tomjohnell.com/openinterstate-canonicalized-us-interstate-highway-data/
1•dnw•2m ago•0 comments

How many people still write code by hand?

1•intenex•4m ago•5 comments

Horse – Fast, Opinionated, Minimalist Web Framework for Delphi and Lazarus

https://github.com/HashLoad/horse
1•TheWiggles•5m ago•0 comments

Reinventing Daydreaming Machines

https://zzbbyy.substack.com/p/reinventing-daydreaming-machines
1•nairboon•6m ago•0 comments

Ask HN: How do you handle OSS project with private artifacts?

1•mrsalty•8m ago•0 comments

From Modern Data Stack to Agentic Data Stack

https://seatunnel.apache.org/blog/modern-data-stack-to-agentic-data-stack/
1•luckypeter•9m ago•0 comments

We Rebuilt a Securities Firm's FICC Data Stack – Queries Got 10x Faster

https://medium.com/@DolphinDB_Inc/we-rebuilt-a-securities-firms-ficc-data-stack-queries-got-10x-f...
1•yiweileng•11m ago•0 comments

Is Anthropology Hopelessly Politicized?

https://www.chronicle.com/article/is-anthropology-hopelessly-politicized
1•Michelangelo11•11m ago•0 comments

Native Inotify in FreeBSD

https://klarasystems.com/articles/native-inotify-in-freebsd/
1•fanf2•17m ago•1 comments

HuggingFace is down due to global AWS outage

https://status.huggingface.co/
2•armcat•19m ago•0 comments

Spotify removes 75 million "AI slop" songs

https://www.abc.net.au/news/2026-07-16/spotify-making-ai-music-easier-to-detect/106919814
2•lexandstuff•21m ago•0 comments

A free, hands-on cybersecurity foundations certificate

https://hackviser.com/core
1•sadican•21m ago•1 comments

At DocuWriter.ai, the documentation will make you smile:)

https://www.docuwriter.ai/
1•magarrent•22m ago•0 comments

Tell HN: CloudFront VPC Origins is down

7•cyounkins•23m ago•1 comments

AI and the paradox of self-replacing workers [video]

https://www.ted.com/talks/madison_mohns_ai_and_the_paradox_of_self_replacing_workers
1•fagnerbrack•23m ago•1 comments

I created OpenClaw, the breakthrough AI agent [video]

https://www.ted.com/talks/peter_steinberger_how_i_created_openclaw_the_breakthrough_ai_agent
1•fagnerbrack•23m ago•0 comments

Stackoverflow 2026 Developer Survey

https://take.survey.stackoverflow.co/jfe/form/SV_4GHunpL3IfJ3rRc
1•throw_await•25m ago•1 comments

Show HN: UOLT – 34 coreutils rewritten in x86_64 assembly, no Libc, no heap

https://github.com/thooams/uolt
2•thooams•25m ago•0 comments

Will the real oppressed group please stand up?

https://digdeeper.neocities.org/articles/oppression.xhtml
1•Gecko4072•30m ago•0 comments

Fyne: Build beautiful cross-platform apps in Go

http://fyne.io
1•thunderbong•31m ago•0 comments

Unpacking the AsyncAPI NPM supply chain compromise, import-time payload delivery

https://www.microsoft.com/en-us/security/blog/2026/07/15/unpacking-asyncapi-npm-supply-chain-comp...
2•nyku•31m ago•0 comments

Show HN: Bring modern package management to Meson's native wrap ecosystem

https://collider.ee/1.5.1/
1•mog_dev•32m ago•0 comments

TLS Certificate Validation on Linux

https://www.tomica.net/blog/2026/07/tls-certificate-validation-on-linux/
2•peregrinus_13•33m ago•0 comments

The Missed Reality: Code Review Wasn't Built for the AI Era

1•axsdrizz•36m ago•1 comments

Show HN: A map of cafes that are in the sun

https://sunny.coffee/
5•BrunoJo•40m ago•2 comments

Northstar – AI PR review for Azure DevOps teams (flat price, not per-seat)

https://northstardevops.com/
1•ginoarpesella•44m ago•0 comments

Show HN: Glad-AI-Tor, the "best" AI tools judged by the crowd

https://glad-ia-tor.com
2•GiornoJojo•47m ago•0 comments

Semantic transactions: securing untrusted AI agent workflows at the OS boundary

https://latentdynamics.substack.com/p/semantic-transactions-securing-untrusted
2•Ayauho•52m 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?