frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Veryfront Code, the first full-stack AI framework

https://github.com/veryfront/veryfront-code
1•kojiwakayama•1m ago•1 comments

One sentence owns this page until you pay $1 more

https://takethethrone.fun
1•letapnahsor•4m ago•0 comments

Is this the civilization we really want? (2017)

https://dynamicland.org/archive/2017/Is_this_the_civilization_we_really_want
1•panic•5m ago•0 comments

WICG/Local-Peer-to-Peer

https://github.com/WICG/local-peer-to-peer
1•eternityforest•7m ago•0 comments

MIDI-hook – Your MIDI controller, now a command center

https://github.com/skorotkiewicz/midi-hook
2•modinfo•8m ago•0 comments

Chinese robot Tiangong clocks sub-9 second 100 metres

https://www.reuters.com/world/asia-pacific/chinese-robot-tiangong-clocks-sub-9-second-100-metres-...
1•hakkikonu•8m ago•0 comments

Reconstructing the benchmark behind Luc Julia's 64% LLM reliability claim

https://github.com/angeluriot/Julia_bench
2•matthieu_bl•12m ago•0 comments

The Market for Lemons

https://en.wikipedia.org/wiki/The_Market_for_Lemons
3•tosh•14m ago•0 comments

Wayland "Intrinsically Faster Than X11, but Not Necessarily More Efficient"

https://www.phoronix.com/news/Wayland-X11-Performance-PorteuX
2•rbanffy•15m ago•0 comments

A problem with RLVR training data

https://twitter.com/SkyeSharkie/status/2092122622834442581
1•tosh•16m ago•0 comments

How We Used AI to Bring MongoDB to DynamoDB

https://www.mongodb.com/company/blog/technical/how-we-used-ai-bring-mongodb-to-dynamodb
1•reticentraccoon•16m ago•0 comments

Casey Muratori – The Root of the Root of All Evil – BSC 2026 [video]

https://www.youtube.com/watch?v=hpj6r6CjJf8
2•gingerBill•16m ago•0 comments

A New Framework for How the Brain Compresses Our Noisy World

https://www.quantamagazine.org/a-new-framework-for-how-the-brain-compresses-our-noisy-world-20260...
1•isaacfrond•20m ago•0 comments

Ask HN: Why do you use Ubuntu?

1•flanked-evergl•22m ago•1 comments

ByteDance Launches AI Office Product "Doubao Work"

https://www.ithome.com/0/993/865.htm
1•JulianVance•23m ago•1 comments

US removes Syria from terrorism sponsor list, lifting major investment obstacle

https://www.reuters.com/world/middle-east/us-removes-syrias-designation-state-sponsor-terrorism-2...
2•imadj•26m ago•1 comments

Effect v4 core package now has no external dependencies

https://twitter.com/tim_smart/status/2092430414837407896
1•tosh•26m ago•0 comments

Ask HN: What are you using to access x.com at the moment?

1•throwaw12•26m ago•1 comments

Bill Gates says world has "no plan" on AI in new essay

https://www.gatesnotes.com/a-turbulent-ai-era-and-critical-choices-to-make
3•aroman•28m ago•1 comments

S21

https://store.steampowered.com/app/4953120/S21/
2•ofrzeta•29m ago•1 comments

Dollywood

https://en.wikipedia.org/wiki/Dollywood
1•thunderbong•30m ago•0 comments

How to export Gemini chat to word without losing formatting [video]

https://www.youtube.com/watch?v=PZZGjJpPDM0
3•slimcrm•31m ago•1 comments

A joke for founders about the perfect startup geography [20 secs]

https://www.mangialardi.it/the-startup-paradox/
1•rm30•31m ago•1 comments

CSS Runtime Performance

https://nolanlawson.github.io/css-talk-2022/#1
1•luu•33m ago•1 comments

Show HN: Buslens – where can I get to by bus? (UK)

https://rupertlinacre.com/buslens/
1•RobinL•35m ago•0 comments

The Cowpox of Doubt (2014)

https://slatestarcodex.com/2014/04/15/the-cowpox-of-doubt/
1•pr337h4m•40m ago•0 comments

Disrupting a new covert influence campaign from Russia

https://openai.com/index/disrupting-malicious-uses-of-ai-influence-campaign-russia/
10•sam_lowry_•41m ago•1 comments

More than 100 suspicious images in Thermo Fisher antibody catalogue

https://www.nature.com/articles/d41586-026-01706-2
2•isaacfrond•43m ago•1 comments

Chinese regulators tell Tesla to fix nearly 3M cars

https://arstechnica.com/cars/2026/08/chinese-regulators-tell-tesla-to-fix-nearly-3-million-cars/
2•rbanffy•44m ago•1 comments

Global All Purpose Script

2•manesiro•45m ago•2 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?