frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•modishbear•23s ago

French Top Court Gets It Right, Strikes Down Social Media Ban for Youths

https://www.eff.org/deeplinks/2026/08/french-top-court-gets-it-right-strikes-down-social-media-ba...
1•mdp2021•1m ago•0 comments

Neurosurgeons perform first successful AI-assisted operation to remove tumour

https://www.theguardian.com/technology/2026/aug/27/london-neurosurgeons-ai-assisted-operation-bra...
1•_tk_•5m ago•0 comments

Pipeline Green Isn't Data Correct

https://apacheseatunnel.medium.com/pipeline-green-isnt-data-correct-dad6044c50ac
1•SeaTunnel•11m ago•0 comments

ARC-AGI-3: A game with no instructions

https://genaipod.substack.com/p/arc-agi-3
1•kuczmama•13m ago•0 comments

Show HN: Not the GTC 2026 Keynote [video]

https://www.youtube.com/watch?v=A5oeMEhB7b4
1•molive•13m ago•0 comments

Nvidia forecasts 70% sales growth next year

https://www.reuters.com/business/media-telecom/nvidia-forecasts-quarterly-revenue-above-estimates...
1•u1hcw9nx•13m ago•0 comments

OpenXcom is an open-source clone of the original UFO: Enemy Unknown

https://openxcom.org/
1•doener•15m ago•0 comments

Glacier collapse and ice avalanche likely fueled deadly Nepal flash flood

https://www.japantimes.co.jp/news/2026/08/27/asia-pacific/society/glacier-avalanche-nepal-flood/
1•blondie9x•17m ago•0 comments

The Eternal Now: How Present Tense Fiction Is Eroding Literary Depth

https://www.pensandpoison.org/p/the-eternal-now-how-present-tense
1•Bluestein•19m ago•0 comments

Uniwidth Typeface

https://en.wikipedia.org/wiki/Uniwidth_typeface
1•amadeuspagel•22m ago•0 comments

An Oral History of Tim Curry's Escape to the One Place Uncorrupted by Capitalism

https://www.vice.com/en/article/an-oral-history-of-tim-currys-escape-to-the-one-place-uncorrupted...
1•tosh•22m ago•0 comments

GitHub – rajnandan1/ken: Thompson-mode systems discipline for AI agents

https://github.com/rajnandan1/ken
1•purple_wow•23m ago•0 comments

Ask HN: What do you do when your AI coding agent is doing its job?

1•tryingtolearn•24m ago•1 comments

A community database for the problems on the erdosproblems.com site

https://github.com/teorth/erdosproblems
1•duck•24m ago•0 comments

Noise-Driven Escape from Metastable Phases Explains Grokking in DNNs

https://arxiv.org/abs/2606.17120
1•jerlendds•25m ago•1 comments

Floci – Local Cloud Emulators

https://floci.io
1•gjvc•26m ago•0 comments

Rembed – Pure-Go text embeddings, no ONNX Runtime, no cgo

https://github.com/rostamlabs/rembed
1•vahid4134•26m ago•0 comments

(Amateur) Planetary Astrophotography (2024)

https://skiesandscopes.com/damian-peach/
2•jensgk•27m ago•0 comments

The Rocky Horror Show – ZX Spectrum, Amstrad CPC, C64, C128 (1985)

https://www.hardcoregaming101.net/the-rocky-horror-show/
1•Bluestein•30m ago•0 comments

CIA Chief's Surprise Moscow Trip Was to Warn Russia Not to Attack NATO

https://www.wsj.com/politics/policy/cia-chiefs-surprise-moscow-trip-was-to-warn-russia-not-to-att...
4•_tk_•31m ago•0 comments

Where this hype is going?

2•arman-w-jalili•34m ago•0 comments

PlainInvoice – Free Invoice Generator, No Signup Required

https://plaininvoice.com
1•5balloons•37m ago•0 comments

Junior consultants called back to office as AI increases need for human skills

https://www.ft.com/content/7fd9c234-a92b-4ab2-ba1f-969cf9a23f52
3•petethomas•39m ago•0 comments

AgeLab research inspires an A I startup

https://www.technologyreview.com/2026/08/25/1140917/agelab-research-inspires-an-a-i-startup/
1•joozio•40m ago•0 comments

Popular fiction is using present tense more than ever

https://idlerambling.substack.com/p/popular-fiction-is-using-present
1•Sketchy_•40m ago•0 comments

The Bitter Lesson

http://www.incompleteideas.net/IncIdeas/BitterLesson.html
1•vishnukvmd•41m ago•0 comments

What RTO Means for AI

https://jasondoyle.ie/whitepapers/what-return-to-office-removes/
1•jamesblakes•42m ago•0 comments

Voice Calling Without Internet

https://play.google.com/store/apps/details?id=com.quicksnap.close2me&hl=en_US
1•brnmwas•44m ago•1 comments

Show HN: A social commentary on the attention economy

https://www.domybidding.lol/
1•cursorial•46m 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?