frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

AI just proved Erdos Problem #124

https://twitter.com/vladtenev/status/1994922827208663383
1•nl•3m ago•0 comments

Decoding Ageing: Blueprint Theory of Ageing [video]

https://www.youtube.com/watch?v=SQAFLDTvQfM
1•escargot•5m ago•0 comments

Show HN: LLM Newsletter Kit – A TypeScript Framework for AI Newsletters

https://github.com/kimhongyeon/llm-newsletter-kit-core
1•hongyeon•6m ago•0 comments

Kopi Luwak

https://en.wikipedia.org/wiki/Kopi_luwak
2•thunderbong•19m ago•0 comments

Tom Stoppard, Award-Winning Playwright of Witty Drama, Dies at 88

https://www.nytimes.com/2025/11/29/theater/tom-stoppard-dead.html
2•mitchbob•22m ago•1 comments

The Markets Aggregating Political Reality

https://freesystems.substack.com/p/inside-the-markets-aggregating-political
1•gwintrob•26m ago•0 comments

Adolescence lasts into 30s – new study shows four pivotal ages for your brain

https://www.bbc.co.uk/news/articles/cgl6klez226o
1•ifh-hn•29m ago•1 comments

Show HN: I built a Web 1.0 budgeting tool, Budget Pro 3000

https://budgetpro3000.com
1•adrianvxyz•31m ago•0 comments

Do we need a new GitHub for AI coding era?

https://github.com/memovai/memov
1•ssslvky1•34m ago•2 comments

Welcome to My Andrew Lloyd Website

https://andrewlloydwebsite.neocities.org/
1•nxobject•34m ago•0 comments

Steven Pinker's Cheesecake for the Mind (1998)

http://cogweb.ucla.edu/Abstracts/Carroll_C98.html
2•lioeters•43m ago•1 comments

Show HN: iOS Old App Downloader 2 [video]

https://www.youtube.com/watch?v=xuX6alPg1yQ
1•txthinking•45m ago•0 comments

NFCGate flagged as malware even after multiple followups saying it isn't

https://github.com/nfcgate/nfcgate/issues/164
2•Antitoxic6185•47m ago•0 comments

Coupang says 33.7M customer accounts breached

https://www.reuters.com/sustainability/boards-policy-regulation/south-korean-e-commerce-firm-coup...
1•alephnerd•54m ago•0 comments

Cybertruck Drives 1,200 Miles FSD 14.2 Autonomously

https://gearmusk.com/2025/11/30/cybertruck-drives-1200-miles-fsd/
2•loog5566•58m ago•0 comments

LLM live ranking (Gemini, OpenAI, xAI)

https://metrik-dashboard.vercel.app/
1•mbouassa•1h ago•0 comments

Human See, Human Do

https://www.edwest.co.uk/p/human-see-human-do
1•Ariarule•1h ago•0 comments

What Are Microservices? (Seriously)

https://bykozy.me/blog/what-are-microservices-seriously/
1•byko3y•1h ago•0 comments

Aircraft Boneyard

https://en.wikipedia.org/wiki/Aircraft_boneyard
3•thunderbong•1h ago•0 comments

YouTube increases FreeBASIC performance (2019)

https://freebasic.net/forum/viewtopic.php?t=27927
3•giancarlostoro•1h ago•0 comments

Hierarchy of Engineering Talent

https://www.businessinsider.com/andrew-ng-talent-engineer-ai-hire-college-graduates-computer-scie...
1•MarcoDewey•1h ago•0 comments

What DFH / the Semantic Stack Does

https://github.com/colts70/The-Sematic-Stack
1•sematicstackdfh•1h ago•1 comments

A personal email newsletter is great

https://bryanhogan.com/blog/email-thank-you
3•bryanhogan•1h ago•0 comments

The Perpetual Student

https://domofutu.substack.com/p/the-perpetual-student
2•wjb3•1h ago•0 comments

Show HN: Ai2.compare Gists with a twist, compare AIs, save, share, explore chats

https://ai2.compare/gist/3f5b3197-bac2-4edb-838c-7535c8b85a10
1•ozgurozkan•1h ago•0 comments

Land, Debt, and Crises

https://arnoldkling.substack.com/p/land-debt-and-crises
2•Ariarule•1h ago•0 comments

Black Friday sets online spending record of $11.8B

https://techcrunch.com/2025/11/29/black-friday-sets-online-spending-record-of-11-8b-adobe-says/
5•MarcoDewey•1h ago•0 comments

Shopify lays off staff to keep team 'fast, sharp and focused'

https://ca.finance.yahoo.com/news/shopify-lays-off-staff-keep-211040075.html
9•mgh2•1h ago•3 comments

Zigbook Is Plagiarizing the Zigtools Playground

https://zigtools.org/blog/zigbook-plagiarizing-playground/
14•todsacerdoti•1h ago•0 comments

Minimal information needed to disambiguate rows

https://github.com/gojiplus/rowvoi
1•neehao•1h 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?