frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Templated prompts that travel with you over SSH

https://github.com/tgalal/promptcmd
1•tgalal•35s ago•0 comments

Blocking Internet Archive Won't Stop AI, but Will Erase Web's Historical Record

https://www.eff.org/deeplinks/2026/03/blocking-internet-archive-wont-stop-ai-it-will-erase-webs-h...
1•hn_acker•39s ago•1 comments

LLM Agent Framework for Simulating Personalized User Tweeting Behavior

https://arxiv.org/abs/2602.22222
1•PaulHoule•44s ago•0 comments

Simple, standalone tools for working with multimodal data

https://github.com/mixpeek/multimodal-tools
1•Beefin•3m ago•0 comments

AWS on X402 for Agentic Commerce

https://aws.amazon.com/blogs/industries/x402-and-agentic-commerce-redefining-autonomous-payments-...
1•bethecloud•3m ago•0 comments

Docker Containers: An Interactive Explanation

https://devopsagents.co/blog/containers-from-scratch
3•jcyriac•4m ago•0 comments

Trump Airs a House Republican's Terminal Diagnosis, Claiming to Have Reversed It

https://www.nytimes.com/2026/03/16/us/politics/trump-neal-dunn-terminal-diagnosis-johnson.html
1•duxup•7m ago•1 comments

A reminder to check your inactive account passwords

https://shub.club/writings/2026/march/rotate-your-passwords/
1•forthwall•7m ago•0 comments

The Last Quiet Thing

https://www.terrygodier.com/the-last-quiet-thing
2•JumpCrisscross•9m ago•0 comments

As India seeks Hormuz safe passage, Tehran asks for return of seized tankers

https://www.reuters.com/world/india/india-seeks-hormuz-safe-passage-tehran-asks-return-seized-tan...
1•JumpCrisscross•9m ago•0 comments

Robot dogs are protecting data centers. Operators are seeing payoffs

https://www.businessinsider.com/robot-dogs-quadruped-data-center-security-boston-dynamics-ghost-r...
1•mikhael•10m ago•0 comments

Show HN: Aelitium – Git-style verification for LLM outputs

https://aelitium.com
1•catarina_eng•10m ago•0 comments

Ask HN: Okara's new AI CMO: Will this solve the marketing problem?

1•nazbasho•13m ago•1 comments

"Gemini AOS": Google's Next Android, Hidden in ATI Silicon

https://guanghuimao.substack.com/p/gemini-aos-googles-next-android-hidden
2•Ati985•13m ago•0 comments

Avalonia WebView Is Now Free and Open Source

https://github.com/AvaloniaUI/Avalonia.Controls.WebView
2•sltr•13m ago•0 comments

Google scraps AI search feature that crowdsourced amateur medical advice

https://www.theguardian.com/technology/2026/mar/16/google-scraps-ai-search-feature-that-crowdsour...
2•geox•13m ago•0 comments

Video Conferencing with Postgres

https://planetscale.com/blog/video-conferencing-with-postgres
1•thunderbong•14m ago•0 comments

tables and views

https://web.archive.org/web/20060710204054/http://www.kx.com/a/k/examples/table.k
1•tosh•14m ago•0 comments

Show HN: Ziex – A full-stack web framework for Zig

2•nurulhudaapon•15m ago•0 comments

How we Built Private Post-Training and Inference for Frontier Models

https://www.workshoplabs.ai/blog/private-post-training
4•oscarmoxon•18m ago•1 comments

Show HN: SmartVPN: A VPN That Hides in Plain Sight over WebSockets

https://typescript.guru/smartvpn-a-vpn-that-hides-in-plain-sight-over-websockets/
1•PhilKunz•19m ago•0 comments

Show HN: LLM Memory Storage that scales, easily integrates, and is smart

https://github.com/colinulin/mind-palace
2•pocketcolin•21m ago•0 comments

Agents over Bubbles

https://stratechery.com/2026/agents-over-bubbles/
2•jonbaer•21m ago•0 comments

Lines of Code as a Productivity Metric in the AI Era

https://keegan.codes/blog/lines-of-code-as-a-productivity-metric-ai-era
1•keegandonley•23m ago•0 comments

Show HN: Stop renting AI – run AI workers on your own dedicated node

https://ainode.sh
1•rzessski•25m ago•1 comments

Northstar CUA Fast, open source 4B CUA model

https://www.tzafon.ai/blog/northstar-cua-fast
1•publius_•26m ago•0 comments

How Tenaciously Palantir Courted Switzerland

https://www.republik.ch/2026/02/18/how-tenaciously-palantir-courted-switzerland
2•sschueller•28m ago•0 comments

Beside

https://aplwiki.com/wiki/Beside
1•tosh•28m ago•0 comments

2 Days to Ship: Codex-Authored Metal Compute Shaders in Draw Things

https://engineering.drawthings.ai/p/2-days-to-ship-codex-authored-metal
1•liuliu•28m ago•0 comments

Open Decision-Making (2021)

https://web.stanford.edu/~ouster/cgi-bin/decisions.php
1•otoolep•29m 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•10mo ago

Comments

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

Many come to HN also for the comments

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