frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Code Field Kit: a tested safety hook and lean Claude.md templates

https://github.com/OactoDev/claude-code-field-kit
1•ninetyquid•1m ago•0 comments

Show HN: I built a free App Store screenshot editor with posable 3D devices

https://ultrashot.io/
1•elliotekj•3m ago•1 comments

The creator of Jujutsu has joined ERSC

https://ersc.io/blog/martin-joins-ersc
3•steveklabnik•5m ago•0 comments

Once Globally Preeminent, U.S. Universities Are Sliding into Decline

https://washingtonmonthly.com/2026/08/17/us-higher-education-decline-chinese-universities/
2•DemiGuru•6m ago•0 comments

Show HN: Three Pins a daily 3-hole golf game in the browser

https://threepins.golf/
1•colin_rightwork•6m ago•0 comments

AI admissions navigator for students in Central Asia

https://www.lumifield.app
1•Aarnur•6m ago•1 comments

Show HN: Rust Glancer 0.2 – new Rust LSP server targeting <100mb idle RSS

https://rust-glancer.github.io/blog/0-2-0/
1•popzxc•7m ago•0 comments

Empty intervals are valid intervals

https://nigeltao.github.io/blog/2025/empty-intervals.html
1•fanf2•9m ago•0 comments

Bitcoin 101 Classroom

https://classroom.google.com/c/ODc2ODU0NDI5MTY1/m/ODc2ODUzMzg4MTI5/details
1•JustReaper•9m ago•0 comments

Show HN: Semantic Overlays – an NX bit for LLM prompt injection (live demo)

https://semantic-overlays.vercel.app/
2•joshua_s_penman•11m ago•0 comments

China's installed solar power capacity surpasses coal power for the first time

https://www.globaltimes.cn/page/202609/1369526.shtml
2•giuliomagnifico•13m ago•0 comments

Stopping the Unstoppable: When an unstoppable force meets a dashpot snubber

https://practical.engineering/blog/2026/9/1/stopping-the-unstoppable
1•crescit_eundo•13m ago•0 comments

New Zero-Cal Sugar Is 3,500 Times Sweeter Than Sucrose,but Doesn't Spike Insulin

https://www.sciencealert.com/this-new-zero-cal-sugar-is-3500-times-sweeter-than-sucrose-but-doesn...
1•ivewonyoung•13m ago•0 comments

PureTube: No ads on YouTube

2•wariya•13m ago•0 comments

Circuit Loop Theory: a mathematical formalism for electromagnetic boundaries

https://github.com/obinexus/circuit_loop_theory/blob/main/CLP_CLA_Mathematical_Formalism.md
1•obinexus•15m ago•0 comments

Atlas: A World Model for Spatial Intelligence

https://www.worldlabs.ai/blog/atlas
33•johnsutor•15m ago•0 comments

Patent-pending live company intelligence for AI agents

https://www.bytemine.ai/blog/temporal-company-intelligence-gtm-agents
1•kokoz•15m ago•0 comments

Launch HN: Nori Robotics (YC S26) – A low-cost humanoid robot for development

https://www.norirobotics.com/
9•AntonioLi•16m ago•0 comments

The model picker is a dead end

https://lovable.dev/blog/the-model-picker-is-a-dead-end
1•tosh•16m ago•1 comments

July in Servo: more platforms, faster canvas, web fonts in SVG, and more

https://servo.org/blog/2026/08/31/july-in-servo/
1•birdculture•16m ago•0 comments

Dark Fiber–An Archaeology of the Dot-Com Bubble (2025)

https://www.technostatecraft.com/p/dark-fiberan-archaeology-of-the-dot
1•mkl95•17m ago•0 comments

Nicholas Decker in Hell

https://www.astralcodexten.com/p/nicholas-decker-in-hell
1•paulpauper•18m ago•0 comments

Did Europeans Get Fat from Neandertals?

https://www.science.org/content/article/did-europeans-get-fat-neandertals
1•paulpauper•19m ago•0 comments

Cloud Imperium Cash Shop Records $8.5M in Sales in August 2026

https://nosygamer.blogspot.com/2026/09/cloud-imperium-cash-shop-records-85.html
1•speckx•20m ago•0 comments

Timelapse of the Future: A Journey to the End of Time [video]

https://www.youtube.com/watch?v=uD4izuDMUQA
1•gurjeet•21m ago•0 comments

John Ternus Replaces Tim Cook as Apple CEO

https://www.nytimes.com/2026/09/01/technology/apple-tim-cook-john-ternus.html
4•FinnLobsien•22m ago•0 comments

Show HN: Sift, an iOS app that auto-detects recipes in Safari and stores them

https://siftapp.me/
1•mthomaswicher•23m ago•0 comments

The Light Herder: 4K Analog Video Feedback Device

https://www.thelightherder.com/
1•glitcher•23m ago•0 comments

Leaked Files Reveal How Russia Trains Hackers for Military Cyber Operations

https://gbhackers.com/leaked-university-files/
4•speckx•24m ago•0 comments

Agentic Video in Gemini

https://blog.google/innovation-and-ai/models-and-research/gemini-models/introducing-agentic-video...
2•ilreb•26m 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?