frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: BlazeRules – vectorized YAML rules for JSON, Kafka, and Arrow events

1•jspuri•3m ago•0 comments

Laser Fault Injection on the TROPIC01 Open-Source Secure Element

https://donjon.ledger.com/blog/tropic01-laser-fault-injection/
1•ahlCVA•4m ago•0 comments

Optimistic Sync Library for the Web

https://therealpaulplay.github.io/PlaySocketJS/
1•PaulPlay•6m ago•0 comments

Another Taste of Verse [video]

https://www.youtube.com/watch?v=QIiU-QGzcqc&list=PLQtDWkrawhsE&index=2
1•mpweiher•7m ago•0 comments

Slople – can you pass the reverse Turing test?

https://unslop.run/slople
1•dopamine_daddy•12m ago•1 comments

What AI did to stackoverflow in a graph

https://data.stackexchange.com/stackoverflow/query/1953768#graph
2•secretslol•13m ago•0 comments

Why do AI company logos look like buttholes?

https://velvetshark.com/ai-company-logos-that-look-like-buttholes
2•miniBill•19m ago•0 comments

HAMgpt – what can I do with my radio today?

https://hamgpt.co
1•howard941•21m ago•0 comments

'The Odyssey' Backlash Failed Tremendously

https://www.wired.com/story/the-odyssey-backlash-failed-tremendously/
2•joozio•24m ago•2 comments

Fable 5 vs. GPT-5.6 Sol on an NP-Hard Problem: Does /goal help?

https://charlesazam.com/blog/fable-5-gpt-5-6-sol-goal/
1•couAUIA•26m ago•1 comments

Mr. Spock Does Not Code in ASCII

https://lqlang.org/blog/spock-does-not-code-in-ascii/
3•wickund•29m ago•0 comments

NextBSD project revived: macOS userland tools on FreeBSD kernel

https://www.theregister.com/os-platforms/2026/07/18/nextbsd-returns-to-dollop-apple-source-on-fre...
2•lproven•30m ago•0 comments

Steam Machine: Between 12k and 15k Units Sold per week

https://boilingsteam.com/steam-machine-between-10k-and-15k-sold-per-week/
2•ekianjo•30m ago•0 comments

There's any easy way to rename multiple photos at once

https://apps.microsoft.com/detail/9nl267vtkkmg?hl=en-US&gl=US
1•SolvyCode•33m ago•0 comments

GitHub: TypeScript compiler and JavaScript engine in Lean

https://github.com/jessealama/thales
2•fagnerbrack•40m ago•0 comments

Business Success: Luck, Not Merit

https://fagnerbrack.com/business-success-luck-not-merit-51deca80bfaf
1•fagnerbrack•41m ago•0 comments

Software Engineering Laws

https://newsletter.techworld-with-milan.com/p/the-20-software-engineering-laws
1•fagnerbrack•41m ago•0 comments

AG of Texas secured a settlement of bankruptcy claims against 23andMe

https://www.texasattorneygeneral.gov/news/releases/attorney-general-paxton-secures-150-million-se...
1•kythanh•43m ago•0 comments

The Htop for LLM Inference

https://github.com/helasaoudi/llm-inspector
2•helasaoudi•44m ago•0 comments

Continually aim just beyond your current range (2007)

https://terrytao.wordpress.com/career-advice/continually-aim-just-beyond-your-current-range/
1•dorjoy•46m ago•0 comments

Claude shows subtle biases to Anthropic across carefully controlled tests

https://twitter.com/owainevans_uk/status/2078149976807592112
1•nsagent•48m ago•0 comments

European Search Perspective

https://www.eu-searchperspective.com
1•Topfi•52m ago•0 comments

Neil Rimer thinks the AI money is coming back out

https://techcrunch.com/2026/07/17/neil-rimer-thinks-the-ai-money-is-coming-back-out/
2•adithyaharish•57m ago•0 comments

Ask HN: Having a child before career has taken off

2•lassearpe•59m ago•4 comments

Show HN: Forward-Only, Autograd-Free PINN with 0ns Zero-Copy Memory Interlock

https://github.com/PJHkorea/Forward_Only_Autograd_Free_PINN
1•PJHkorea•59m ago•1 comments

LG monitors silently install software through Windows Update without consent

https://videocardz.com/newz/lg-monitors-silently-install-software-through-windows-update-without-...
80•baranul•1h ago•19 comments

US lawmakers urge Trump administration to ban Chinese memory chips

https://www.ft.com/content/9e7cdf3c-2e52-492f-afeb-b63d86a53ce6
2•giuliomagnifico•1h ago•1 comments

IEA Warns World Has Just Weeks to Avoid Hormuz Economic Shock

https://oilprice.com/Latest-Energy-News/World-News/IEA-Warns-World-Has-Just-Weeks-to-Avoid-Hormuz...
4•baranul•1h ago•0 comments

Show HN: GPT-5.6 Sol vs. Claude Fable 5 in CNC Red Alert 2

https://system-2-arena.vercel.app/showcase/ra2?war=sol-vs-fable-lake
2•masterchef2209•1h ago•0 comments

Billion-dollar California salad company exploits undocumented migrants (2014)

https://www.theguardian.com/us-news/2014/nov/23/billion-dollar-california-salad-company-exploits-...
2•cramer4next•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?