frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Auto update and visualize your AI chat context

https://99helpers.com/tools/visual-contextual-chat
1•nickk81•45s ago•0 comments

A family need transformed into a simple learning tool

https://melhorar-aprendizagem.com.br/
1•linuxsoares•3m ago•1 comments

Show HN: Kybernis – Prevent AI agents from executing the same action twice

https://kybernis.io
1•wingrammer•4m ago•0 comments

Triumph of the toons: how animation came to rule the box office

https://economist.com/culture/2026/03/05/triumph-of-the-toons-how-animation-came-to-rule-the-box-...
1•andsoitis•4m ago•0 comments

What Happens When We Die

https://www.themarginalian.org/2026/03/05/alan-lightman-death/
1•NKosmatos•5m ago•0 comments

Legal Punishment Affects Crime: Law's Punitive Behavioral Mechanisms (2025)

https://www.annualreviews.org/content/journals/10.1146/annurev-lawsocsci-111524-094646
1•rendx•6m ago•0 comments

Dereks at Work: what would it mean for an AI agent to be "accountable"?

https://www.lableaks.dev/p/dereks-at-work
1•didgeoridoo•7m ago•0 comments

Show HN: SafeAppeals – Cursor for Documents

https://safeappeals.com
1•SavagelySubtle•7m ago•0 comments

Jj v0.39.0 Released

https://github.com/jj-vcs/jj/releases/tag/v0.39.0
1•birdculture•9m ago•0 comments

As AI Turns Prevalent, UI Becomes Irrelevant

https://www.star-history.com/blog/ai-ui-irrelevant
1•jicea•11m ago•0 comments

Show HN: FlowLessAI – NPM I -g vibe-auditor – AI audits your codebase

https://github.com/flowlessai/vibe-auditor
1•mozinovati•11m ago•0 comments

Trajectly – deterministic regression tests for AI agents

https://www.trajectly.dev/
1•ashmawy•11m ago•1 comments

Are You Noticing This?

https://ryanholiday.net/are-you-noticing-this/
1•NaOH•13m ago•0 comments

Snapdragon ARM laptop overtakes Intel's flagship Panther Lake in benchmarks

https://www.pcguide.com/news/snapdragon-powered-arm-laptop-overtakes-intels-flagship-panther-lake...
3•Tuldok•13m ago•1 comments

Sub-10-Second Database Boot on Kubernetes with Full Isolation

https://vela.simplyblock.io/blog/sub-10-second-database-boot-kubernetes/
1•panrobo•14m ago•0 comments

United Airlines can permanently ban passengers who don't wear headphones

https://www.theverge.com/transportation/890202/united-airlines-headphones-policy-contract-of-carr...
3•pavel_lishin•14m ago•0 comments

Why Does Child Care Seem Less Affordable Than Ever

https://www.nytimes.com/2026/03/05/upshot/child-care-expensive-prices.html
2•karakoram•14m ago•1 comments

10–97% in nine minutes: BYD presents second generation of Blade Battery

https://www.electrive.com/2026/03/05/10-97-in-nine-minutes-byd-presents-second-generation-of-blad...
1•voxadam•15m ago•0 comments

Sam Altman Admits OpenAI Can't Control Pentagon's Use of AI

https://www.theguardian.com/technology/2026/mar/04/sam-altman-openai-pentagon
2•karakoram•16m ago•0 comments

Show HN: I built an AI exam prep platform for AWS certs after failing one myself

https://www.knowza.ai/
2•johnnyChiv•20m ago•2 comments

Documentation Is a Message in a Bottle

https://blog.plover.com/tech/gpt/documentation-wins.html
2•pavel_lishin•21m ago•0 comments

Dcsctp: An SCTP Implementation for WebRTC Data Channels in Rust

https://github.com/webrtc/dcsctp
1•simonpure•24m ago•0 comments

Ask HN: How do you keep AI coding agents aligned with your codebase standards?

3•trung123102•24m ago•0 comments

Ask HN: Do You Enjoy Your Career in Tech Nowadays?

3•karakoram•25m ago•5 comments

You can just register new holidays

https://www.nationaldayarchives.com/day/national-mar5-day/
1•frymatic•25m ago•1 comments

Stable Problems

https://blog.sebastiansastre.co/posts/stable-problems/
1•sebastianconcpt•25m ago•0 comments

Getting Serious about Context

https://yagmin.com/blog/getting-serious-about-context/
1•lubujackson•25m ago•0 comments

Tiny recording backpacks reveal bats' surprising hunting strategy

https://theconversation.com/tiny-recording-backpacks-reveal-bats-surprising-hunting-strategy-271996
1•roldie•27m ago•0 comments

Subverting AI Agent Logging with a Git Post-Commit Hook

https://danq.me/2026/03/03/ai-agent-logging/
1•amai•27m ago•0 comments

Sem – Semantic Diff behind the new viral merge algo Weave

https://github.com/Ataraxy-Labs/sem
1•rs545837•27m ago•1 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•9mo ago

Comments

nip•9mo 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•9mo 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•9mo 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•9mo 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•9mo ago
This is an advertisement
tomrod•9mo ago
I wish this were critical, but it is an ad for MCP.run.
nip•9mo ago
It’s both in my opinion and discussions can stem from the linked article

Many come to HN also for the comments

palmfacehn•9mo ago
Personally, I'm not a fan. I thought the proponent's view might stimulate a discussion.
FunnyLookinHat•9mo 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•9mo 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•9mo 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•9mo ago
This post has too many "shameless plugs" to be taken seriously.
smitty1e•9mo 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?