frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Bayeux Tapestry: Woven by the Victors

https://www.historytoday.com/archive/out-margins/bayeux-tapestry-woven-victors
2•prismatic•47s ago•0 comments

Where's the Beef?: The lab-grown-meat revolution that wasn't

https://harpers.org/archive/2026/09/wheres-the-beef-lab-grown-meat-erin-somers/
2•Hooke•1m ago•0 comments

Simple Git Management Tool

https://github.com/sascha10000/gitman
1•sascha10000•2m ago•0 comments

Claude Opus 5.5: Things People Created

https://favtutor.com/claude-opus-5-5-real-examples/
1•wslh•4m ago•0 comments

OpenAI 'agent' hacked Australia's health service

https://www.ft.com/content/56133ef4-377b-4e35-a939-f199ceb64507
1•little_goat_boy•5m ago•0 comments

Steppy Fox – free browser game

https://steppyfox.com/
1•fadilbeg•6m ago•0 comments

The last IMO problem AI could not solve [video]

https://www.youtube.com/watch?v=Nbwv5wHQoj0
1•ColinWright•8m ago•0 comments

It's Not Just True, It's False

https://idiallo.com/byte-size/its-not-just-true-its-false
1•foxfired•8m ago•0 comments

A Redistribution of Code Ownership

https://blog.scotterickson.info/2026-09-23-Redistributed-Ownership
1•serickson•10m ago•0 comments

DHH Is Completely Crazy

https://www.reddit.com/r/rails/comments/1woa8r8/dhh_is_completely_crazy/
2•megraf•10m ago•0 comments

Virtual World/Real World Cycling App – In over My Head

https://sykla.app/hn
1•blakeburnette•11m ago•2 comments

OpenAI agent hacked Medicare, Albanese expressed 'extreme concern' to Sam Altman

https://www.theguardian.com/australia-news/2026/sep/24/anthony-albanese-says-openai-agent-hacked-...
2•NervousDendrite•13m ago•0 comments

The First VHS VCR: JVC HR-3300

https://dfarq.homeip.net/the-first-vhs-vcr-jvc-hr-3300/
1•ibobev•14m ago•0 comments

White House Says Access Is a 'Privilege' in Court Filing Defending Media Ban

https://www.nytimes.com/2026/09/23/business/trump-cnn-politico-ms-now-ban.html
1•whack•14m ago•0 comments

The spy in your living room

https://dfarq.homeip.net/the-spy-in-your-living-room/
1•ibobev•14m ago•1 comments

New England RetroFest and the Maine Vintage Computer Society

https://www.goto10retro.com/p/new-england-retrofest-and-the-maine
1•ibobev•14m ago•0 comments

OpenAI Hacked Medicare Portal, Australia Prime Minister Anthony Albanese Says

https://www.rnz.co.nz/news/world/1551084/openai-hacked-medicare-portal-australia-prime-minister-a...
1•richardc323•15m ago•0 comments

OpenRouter x AssemblyAI: Universal‑3.5 Pro is now available on OpenRouter

https://www.assemblyai.com/blog/aai-on-openrouter
1•iharnoor•17m ago•1 comments

The next Surface Pro 12-inch and Surface Laptop 13-inch

https://blogs.windows.com/devices/2026/09/23/introducing-surface-pro-12-inch-and-surface-laptop-1...
1•kristianpaul•18m ago•0 comments

Bulk Orders Surge at Used Bookstores in Japan; 50 Tons Sent to U.S.

https://news.ntv.co.jp/category/society/e48899c1ab1445f683929740ef2b3aa6
2•ilamont•18m ago•0 comments

Surprise, Meta's latest AI gimmick is just underpaid humans

https://www.avclub.com/meta-muse-ai-human-labor
1•randycupertino•20m ago•0 comments

Cassis: Context Maintenance for Analytics Agents

https://getcassis.com/product/
1•matthieu_bl•21m ago•0 comments

TQL – A DB Client in Your Terminal

https://github.com/VheissuLabs/tql
1•karlcodeswell•22m ago•0 comments

Claude's Load-Bearing Seams

https://madradavid.com/claudes-load-bearing-seams/
3•rzk•24m ago•1 comments

AI Agent Goal Hijack: How Attackers Turn an Agent's Own Tools Against It

https://darkmarc.substack.com/p/hijacking-ai-agents-how-an-agents
1•gmays•24m ago•0 comments

An 'AI freeze' could make big AI companies bigger and hurt smaller firms

https://www.npr.org/2026/09/23/nx-s1-5973306/ai-slowdown-debate-openai-anthropic
5•billybuckwheat•24m ago•1 comments

My Wedding Invitations Became an Experiment in AI Memory

https://pureooze.com/blog/posts/2026-09-22-my-wedding-invitations-became-an-experiment-in-ai-memory/
1•pureooze•26m ago•0 comments

Runtime Dynamic Compression of Mixture of Experts [pdf]

https://timdettmers.com/papers/runtime-dynamic-compression.pdf
1•simonpure•30m ago•0 comments

I vibe coded an algorithmic musical fugue generator

https://claude.ai/artifact/7KgLDXrRMsHVcoBG9LPzdu
1•iqbal1980•30m ago•0 comments

Show HN: OpenCode Agent Router – Jev Controlled Subagents

https://github.com/maharshi365/oc-agent-router
1•maharshi365•32m 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?