frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI Propaganda factories with language models

https://arxiv.org/abs/2508.20186
1•lknik•3m ago•0 comments

Myrtle Corbin

https://en.wikipedia.org/wiki/Myrtle_Corbin
1•thunderbong•4m ago•0 comments

Steering Committee Retrospective

https://www.haskellforall.com/2025/09/steering-committee-retrospective.html
1•Athas•11m ago•0 comments

What you should do if you suddenly can't pee

https://www.cnn.com/2025/09/15/health/cant-pee-what-it-means-wellness
1•wjb3•12m ago•0 comments

Ask HN: macOS+AWS Workspace+Bluetooth sucks: dongle headphone recommendations?

1•nico_h•14m ago•0 comments

SlamDunk for 3D Visualizations in Python

https://github.com/Robertleoj/slam_dunk
1•robertleoj•15m ago•1 comments

Council to introduce facial recognition CCTV

https://www.bbc.co.uk/news/articles/crl5030lwkwo
1•jonatron•15m ago•0 comments

Music training can help the brain focus

https://news.ki.se/music-training-can-help-the-brain-focus
1•XzetaU8•18m ago•0 comments

Supporting our AI overlords: Redesigning data systems to be Agent-first

http://muratbuffalo.blogspot.com/2025/09/supporting-our-ai-overlords-redesigning.html
1•furkansahin•20m ago•0 comments

Scandal rocks international stone skipping contest

https://www.popsci.com/science/stone-skipping-scandal/
1•domofutu•20m ago•0 comments

Repatriation games: the mid-market reevaluates its public cloud consumption

https://www.techradar.com/pro/repatriation-games-the-mid-market-reevaluates-its-public-cloud-cons...
1•PaulKeeble•20m ago•0 comments

Works in Progress is now in print

https://worksinprogress.co/print/
2•bensouthwood•23m ago•0 comments

The Art of Japanese Stationery: Why It's More Than Just Office Supplies

https://shibuya-stationery.com/blogs/news/the-art-of-japanese-stationery-why-it-s-more-than-just-...
2•causalitycone•24m ago•0 comments

Slack Client for Your Terminal

https://github.com/jpbruinsslot/slack-term
1•gz09•25m ago•0 comments

Digging deeper into YouTube's view count discrepancy

https://www.jeffgeerling.com/blog/2025/digging-deeper-youtubes-view-count-discrepancy
1•Bogdanp•34m ago•0 comments

Kim Dotcom Extradition Decision Was Lawful, Judicial Review Denied

https://torrentfreak.com/kim-dotcom-extradition-decision-lawful-judicial-review-denied-250916/
3•gslin•36m ago•0 comments

Amiga Walker

https://en.wikipedia.org/wiki/Amiga_Walker
2•doener•36m ago•0 comments

40k-Year-Old Symbols in Caves Worldwide May Be the Earliest Written Language

https://www.openculture.com/2025/09/40000-year-old-symbols-found-in-caves-worldwide-may-be-the-ea...
3•mdp2021•39m ago•0 comments

Best Shippping Aggregrator in India

1•orderzup•39m ago•0 comments

Lovemoney Game Online why this game so popular?

https://lovemoneygames.com
1•Febe1212•40m ago•0 comments

Vivaldi 7.6 allows customizing the Tab Bar and adds a Tab Button

https://vivaldi.com/blog/vivaldi-on-desktop-7-6/
4•newscombinatorY•41m ago•1 comments

Carbon Copy No.8: Classes Part II

https://github.com/carbon-language/carbon-lang/discussions/6090
2•zmodem•43m ago•0 comments

AI has changed the career pathway for junior developers

https://stackoverflow.blog/2025/09/10/ai-vs-gen-z/
1•Tikrong•45m ago•1 comments

Electricity through osmosis: Japan opens landmark osmotic power plant

https://newatlas.com/energy/electricity-through-osmosis-japan-opens-worlds-second-osmotic/
3•Ozarkian•47m ago•0 comments

C++ Committee Prefers Bjarne's Profiles to Baxter's Rustification

1•robinsrowe•47m ago•0 comments

A tool help you find the hairstyle that suits you

https://righthair.ai/
1•MiaTaylor•49m ago•0 comments

"Why Everything Pam Bondi Said About 'Hate Speech' Is Wrong"

https://reason.com/volokh/2025/09/16/why-everything-pam-bondi-said-about-hate-speech-is-wrong/
2•mdp2021•50m ago•0 comments

Show HN: A recursive calendar for 0.1x engineers

1•eltonlin•51m ago•0 comments

Pnpm has a new setting to stave off supply chain attacks

https://pnpm.io/blog/releases/10.16
6•ivanb•54m ago•1 comments

Is there demand for a managed web automation and monitoring service?

1•TheOneEye•56m 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•4mo ago

Comments

nip•4mo 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•4mo 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•4mo 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•4mo 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•4mo ago
This is an advertisement
tomrod•4mo ago
I wish this were critical, but it is an ad for MCP.run.
nip•4mo ago
It’s both in my opinion and discussions can stem from the linked article

Many come to HN also for the comments

palmfacehn•4mo ago
Personally, I'm not a fan. I thought the proponent's view might stimulate a discussion.
FunnyLookinHat•4mo 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•4mo 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•4mo 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•4mo ago
This post has too many "shameless plugs" to be taken seriously.
smitty1e•4mo 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?