frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

US 'Homeland Security' Twitter account seemingly run from Israel

https://www.thecanary.co/trending/2025/11/23/twitter-location-data/
3•botanical•3m ago•0 comments

Prosody XMPP server in the home lab

https://box.matto.nl/prosody-xmpp-server-in-the-home-lab.html
1•gsky•4m ago•0 comments

Towards Spring Tools 5 – Ready for Boot 4 and Framework 7

https://spring.io/blog/2025/11/24/towards-spring-tools-5-part1
1•tsenturk•5m ago•0 comments

Which exercise prescription is most effective for patients with sleep disorders?

https://link.springer.com/article/10.1007/s41105-025-00596-7
1•QueensGambit•5m ago•0 comments

Widelands is a free, open-source real-time strategy game inspired by Settlers II

https://www.widelands.org/
1•doener•5m ago•1 comments

Bla bla bla PEER REVIEW bla bla bla

https://statmodeling.stat.columbia.edu/2020/06/11/bla-bla-bla-peer-review-bla-bla-bla/
1•eftegarie•5m ago•0 comments

New Gene-Editing Strategy Could Help Development of Treatments for Rare Diseases

https://www.nytimes.com/2025/11/19/health/gene-editing-rare-diseases.html
1•bookofjoe•7m ago•1 comments

Linux Manual Page – Intro(1)

https://www.man7.org/linux/man-pages/man1/intro.1.html
1•lioeters•7m ago•0 comments

How to repurpose your old phone into a web server

https://far.computer/how-to/
2•wicket•7m ago•0 comments

Show HN: I built an AI overlay to stop breaking my flow 50 times a day

https://github.com/thisisharsh7/seeva-ai-assistant
1•thisisharsh7•8m ago•0 comments

Decline in downloads of once popular packages Yesterday Derek Jones

https://shape-of-code.com/2025/11/23/decline-in-downloads-of-once-popular-packages/
1•gsky•9m ago•0 comments

A Long-Tail Professional Forum-Based Benchmark for LLM Evaluation

https://arxiv.org/abs/2511.06346
1•wslh•10m ago•0 comments

What's Past Is Prologue

https://www.whatwelo.st/p/whats-past-is-prologue
1•cratermoon•12m ago•0 comments

The worst programming language of all time [video]

https://www.youtube.com/watch?v=7fGB-hjc2Gc
1•dsego•14m ago•0 comments

Show HN: MCP Server for Time-Series Forecasting

https://github.com/S-FM/faim-mcp
1•ChernovAndrei•16m ago•0 comments

Clues by Sam

https://cluesbysam.com/
1•emreb•16m ago•0 comments

How Snyk Studio for Qodo Is Closing the AI Security Gap

https://snyk.io/blog/snyk-studio-for-qodo/
1•tsenturk•18m ago•0 comments

I Built an EF Core Connector for Azure Data Explorer

https://anasismail.com/i-wrote-an-ef-core-provider/
5•anasik•18m ago•0 comments

Libpqxx 8.0 RC1 Released

https://github.com/jtv/libpqxx/releases/tag/8.0.0-rc1
1•klaussilveira•19m ago•0 comments

Why the AI "megasystem problem" needs our attention

https://bigthink.com/the-long-game/why-the-ai-megasystem-problem-needs-our-attention/
2•speckx•20m ago•0 comments

Hugo Static Site on Cloudflare

https://techlife.blog/posts/hugo-static-site-on-cloudflare/
2•tsenturk•20m ago•0 comments

Careless Whisper: Exploiting Silent Delivery Receipts to Monitor Users

https://arxiv.org/abs/2411.11194
1•pona-a•21m ago•0 comments

Harvard University discloses data breach affecting alumni, donors

https://www.bleepingcomputer.com/news/security/harvard-university-discloses-data-breach-affecting...
2•fleahunter•22m ago•0 comments

Show HN: I made a tool to export TikTok comments

https://exporttok.com
2•jackemerson•22m ago•0 comments

Mu – The Micro Network

https://github.com/asim/mu
2•asim•22m ago•0 comments

Quantum safe your rust programs

https://blog.rust.careers/post/quantum_safe_rust_cryptography/
1•FiroSolutions•23m ago•1 comments

Proton LLM: Lumo security model

https://proton.me/blog/lumo-security-model
1•kekqqq•25m ago•0 comments

Sustained long-term disease correction following stem cell gene therapy

https://www.manchester.ac.uk/about/news/groundbreaking-gene-therapy-trial-for-hunter-syndrome-opens/
1•neom•25m ago•1 comments

AI Meets Aggressive Accounting at Meta's Gigantic New Data Center

https://www.wsj.com/tech/meta-ai-data-center-finances-d3a6b464
3•petethomas•26m ago•0 comments

Show HN: Yolodex – real-time customer enrichment API

https://api.yolodex.ai
6•hazzadous•27m 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•6mo ago

Comments

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

Many come to HN also for the comments

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