frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Master Data Governance Framework

https://link.springer.com/book/10.1007/979-8-8688-2145-5
1•teleforce•4m ago•0 comments

Best way to integrate your devtool with companies

1•deepakcoder•4m ago•0 comments

A new generation of music software is shrinking musical theatre orchestras

https://www.theguardian.com/music/2026/jun/23/keycomp-replacing-musicians-musical-theatre-pit-orc...
1•Erikun•5m ago•0 comments

Forge – Code-Quality Guardrails for AI Agents

https://github.com/misnaej/forge
1•car•6m ago•0 comments

Visualization: How would 1M Starlink satellites look

https://claude.ai/public/artifacts/a45c2338-f11f-4899-85a0-9bb63d5d6656
2•tomaskafka•7m ago•0 comments

The Theoretical Limit of Image Compression [video]

https://www.youtube.com/watch?v=W39hBPOk9Hk
2•Imustaskforhelp•8m ago•0 comments

I Vibecoded a TUI life RPG

https://github.com/knguyenanhoa/trpg
1•191101•8m ago•1 comments

Human bodies did not simply got bigger and bigger over time in a steady line

https://phys.org/news/2026-06-idea-human-bodies-simply-bigger.html
1•JPLeRouzic•9m ago•0 comments

Invite to beta tester and investors for depgaze. SW supply chain security tool

https://www.depgaze.xyz/
1•gcarlo•13m ago•0 comments

EU Member States (and Google) suddenly want to keep cookie banners

https://noyb.eu/en/eu-member-states-and-google-suddenly-want-keep-cookie-banners
2•robin_reala•14m ago•0 comments

Show HN: We built an open-source tool for real-time speech-to-speech translation

1•Saurabh_06•14m ago•0 comments

GLM 5.2 vs. Claude Opus 4.5

https://gopeekapp.blogspot.com/2026/06/glm-52-vs-claude-opus-45.html
2•GeorgeWoff25•26m ago•1 comments

How to Stay Active with a Desk Job

https://www.uclahealth.org/news/article/how-stay-active-with-desk-job
2•hasudon7171•26m ago•0 comments

Ask HN: Anthropic banned me from using Claude Code and I don't know what to do

3•ayi•27m ago•0 comments

America's largest companies have no simple way to report security flaws

https://this.weekinsecurity.com/dozens-of-americas-largest-companies-have-no-simple-way-to-report...
2•anujbans•28m ago•0 comments

A Dark Dimension Could Link Two of the Universe's Great Unknowns

https://www.quantamagazine.org/a-dark-dimension-could-link-two-of-the-universes-great-unknowns-20...
2•anujbans•29m ago•0 comments

Current AI is like the film company producing TV series or movies

https://devcyc.life/current-ai-is-like-the-film-company-producing-tv-series-or-movies/
1•lilerjee•31m ago•0 comments

Louis Pope Gratacap, a Curator in Lost Worlds

https://publicdomainreview.org/essay/gratacap-curator-in-lost-worlds/
2•Caiero•32m ago•0 comments

I published: how a question about heat became a question about reality itself

https://everythingthatglows.com/
1•kmeves•32m ago•2 comments

SHOW HN: ConvertFast – offline file conversion and file utilities for desktop

https://convertfast.co/
1•amsaleque•34m ago•1 comments

Show HN: MinLlama – Llama 3.2 inference in ~100 lines of NumPy

https://github.com/timothygao8710/minLlama
1•timothygao•35m ago•0 comments

Show HN: Make your app collaborative or multiplayer with one prompt

https://antics.gg/
2•heyitssim•36m ago•0 comments

Language models transmit behavioural traits through hidden signals in data

https://www.nature.com/articles/s41586-026-10319-8
2•thinkingemote•37m ago•0 comments

Show HN: SIA SEO: AI SEO content generation that shows up in AI Search Results

https://siaseo.com
1•Sharanxxxx•39m ago•1 comments

Cascading Messages in Smalltalk

https://donraab.medium.com/cascading-messages-in-smalltalk-14807389b6ce
1•ingve•39m ago•0 comments

Why the Odyssey Keeps Defeating Filmmakers

https://www.newyorker.com/magazine/2026/06/29/why-the-odyssey-keeps-defeating-filmmakers
2•prismatic•40m ago•0 comments

Open source, global vs. proprietary but for US in US, which is fundable in SaaS?

2•avijeetsingh16•44m ago•0 comments

Good growth strategist, bad growth strategist

https://read.earlystagegrowth.com/p/good-growth-strategist-bad-growth
1•joshlachkovic•49m ago•0 comments

Show HN: Free VIN Decoder with AI Summaries on Cloudflare Workers and NHTSA Data

https://checkmyvin.net/
1•Roselol•52m ago•0 comments

The new HTTP QUERY method explained

https://kreya.app/blog/new-http-query-method-explained/
7•CommonGuy•55m ago•2 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?