frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Lowkey Studio – Shader Powered visual effects compositor in the Browser

https://lowkeyviewer.com/studio/
1•tracerbulletx•2m ago•0 comments

AI Moves into Family Life

https://www.axios.com/2026/07/25/ai-family-parenting-productivity
1•karakoram•2m ago•0 comments

How to self-host servers in your living room on static IPs

https://vimuser.org/l2tp.html
2•birdculture•5m ago•0 comments

Show HN: Distill and serve small models with frontier quality for half the cost

https://github.com/experientiallabs/world-model-optimizer
2•SilenN•6m ago•0 comments

105M Americans Are Not Working – More Than Covid or the Great Recession

https://nypost.com/2026/07/22/business/number-of-americans-not-in-the-labor-force-surges-to-recor...
1•karakoram•6m ago•0 comments

Why do we do astrophysics?

https://arxiv.org/abs/2602.10181
1•i_no_can_eat•12m ago•0 comments

Godot Benchmark 2: Opus 5 > Sol > Terra

https://ziva.sh/blogs/godot-vampire-benchmark
1•OsrsNeedsf2P•13m ago•0 comments

Wattage: A token-spend profiler and cost-regression gate for AI agents

https://github.com/faizannraza/wattage
1•faizanraza03•13m ago•0 comments

Year old solves propriatery psvr2 cotroller tracking

https://github.com/odin30814-cmyk/psvr2-controller-ir-lights-enable
1•odinsmith321•16m ago•0 comments

Signs of AI Design Slop

https://github.com/febbhav/signs-of-ai-design
1•febians•17m ago•0 comments

Josh James selling Domo for $400M

https://www.deseret.com/business/2026/07/23/domo-acquisition-progress-software-utah-tech-sector-s...
1•toomuchtodo•19m ago•1 comments

Alberta Learner Practice Test

https://driversedhub.com/tests/alberta-learner-practice-test/
1•therenis•19m ago•0 comments

Show HN: Paper – A Journaling CLI for Developers

https://paper.rewrlution.com
1•dmsehuang•22m ago•0 comments

Productivity Paradox

https://en.wikipedia.org/wiki/Productivity_paradox
7•azhenley•24m ago•0 comments

Genetics and intelligence differences: five special findings

https://www.nature.com/articles/mp2014105
2•gmays•31m ago•0 comments

Japan legend Miura, 59, scores first goal since 2022

https://www.bbc.com/sport/football/articles/c3r087181ndo
19•brudgers•37m ago•1 comments

Types with AI

https://www.alecvo.org/blog/types-with-ai/
3•Vgoose•39m ago•0 comments

A Minecraft-alpha-style voxel game written in Rust with a custom engine

https://github.com/dollspace-gay/Wildforge
2•wertyk•43m ago•0 comments

FastJson 1.2.83 Remote Code Execution

https://fearsoff.org/research/fastjson-1-2-83-rce
2•miniBill•45m ago•0 comments

Cursor Bridge – Run Unlimited Claude Code on Your Cursor Subscription

https://github.com/hkc5/cursor-bridge
9•hakancan•53m ago•5 comments

Scriptc by Vercel: TypeScript-to-Native compiler, no JavaScript engine in binary

https://github.com/vercel-labs/scriptc
3•maxloh•55m ago•0 comments

Shepherd Model Gateway – Model-routing gateway for LLM deployments

https://github.com/lightseekorg/smg
2•rekl•1h ago•0 comments

Your GPS Is Lying to You

https://medium.com/@rohitdastalks/your-gps-is-lying-to-you-and-thats-a-national-security-crisis-7...
5•jonbaer•1h ago•0 comments

"A vicious circle of incompatibility" – Unsung

https://unsung.aresluna.org/a-vicious-circle-of-incompatibility/
3•rbanffy•1h ago•0 comments

A live black-box capability eval for autonomous offensive-security agents

https://phantomlogin.entropicsystems.net/
2•snorbleck•1h ago•0 comments

Claude of Duty

https://github.com/mshumer/Claude-of-Duty/tree/main
2•SweetSoftPillow•1h ago•1 comments

Stories Told About Data Centres – Pixel Envy

https://pxlnv.com/blog/stories-told-about-data-centres/
1•rbanffy•1h ago•0 comments

Tesler's Law

https://en.wikipedia.org/wiki/Law_of_conservation_of_complexity
5•soupspaces•1h ago•1 comments

Videos Helped Me Uncover Abuse at an Arkansas Private School

https://www.propublica.org/article/arkansas-private-school-abuse-video
2•Jimmc414•1h ago•0 comments

Court Reporter Submitted AI-Generated Errors in Official Court Transcript

https://www.404media.co/judge-caught-court-reporter-using-ai-transcript-errors/
1•Jimmc414•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•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?