frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: How could video podcasts challenge YouTube?

1•andrewstuart•53s ago•0 comments

Show HN: Habitless – A minimalist, privacy-first tracker to quit addictions

https://apps.apple.com/us/app/habitless-quit-addiction/id6758941144
1•felixkariuki_m•3m ago•0 comments

AI-powered tool that generates Cypress and Playwright end-to-end tests

https://github.com/aiqualitylab/ai-natural-language-tests
1•LetsAutomate•4m ago•0 comments

Intel ME

https://en.wikipedia.org/wiki/Intel_Management_Engine
1•dtj1123•5m ago•0 comments

Haitless: Quit Addiction

1•felixkariuki_m•11m ago•0 comments

I am a 15-year-old girl: the vile misogyny that confronts me on social media

https://www.theguardian.com/commentisfree/2026/feb/23/15-year-old-girl-misogyny-social-media-onli...
3•Anthony-G•11m ago•2 comments

Coding Consistently with Agents in 2026

https://www.mykel.org/notes/coding-with-agents
1•mvkel•11m ago•0 comments

VisPhyWorld: Probing Physical Reasoning via Code-Driven Video Reconstruction

https://arxiv.org/abs/2602.13294
1•PaulHoule•13m ago•0 comments

Police are finding suspects based on searches as courts weigh privacy concerns

https://apnews.com/article/google-reverse-keyword-search-privacy-c5a0bc6f3790213f92e78aae720d2379
2•iamnothere•14m ago•0 comments

Show HN: OmniClaw – An autonomous AI swarm that runs natively on Termux

https://github.com/webspoilt/omniclaw
1•anon89745•14m ago•1 comments

Read Locks Are Not Your Friends

https://eventual-consistency.vercel.app/posts/write-locks-faster
2•birdculture•16m ago•0 comments

Why You Shouldn't Raise VC (Yet): How to Bootstrap with Carolyn Katz

https://fi.co/events/why-you-shouldn-t-raise-vc-yet-how-to-bootstrap-with-carolyn-katz
1•FInstituteNY•18m ago•1 comments

I reduced my OpenSearch costs by 85% using disk-based vector search

https://builder.aws.com
1•namarjun•18m ago•0 comments

Will Software Engineering Survive?

https://akr.am/blog/posts/will-software-engineering-survive
1•thefilmore•18m ago•2 comments

"Car Wash" test with 53 models

https://opper.ai/blog/car-wash-test
16•felix089•19m ago•4 comments

Torvalds: Someone who isn't afraid of numbers past teens will take over Linux

https://www.theregister.com/2026/02/23/linux_7_0_rc1/
3•smurda•21m ago•0 comments

Does AI put women at a disadvantage?

https://www.ft.com/content/60e2a900-8999-46cc-8107-4f468f442aae
1•paulpauper•22m ago•2 comments

Show HN: DevUtility Hub – Like CyberChef, but for the 2026 Stack (MCP, ZKP, AI)

https://www.devutilityhub.me/
1•badboyshah•22m ago•0 comments

Did Eastern Europe produce that many slaves?

https://www.cambridge.org/core/journals/american-political-science-review/article/consequences-of...
1•paulpauper•22m ago•0 comments

Mailing List Blocklists/Blacklists

1•mappx•22m ago•0 comments

My screed against capital-T taste

https://text-incubation.com/my-screed-against-capital-t-taste
1•krrishd•23m ago•0 comments

Using an LED Loop to Verify Your Toolchain Is Flashing the Hardware

https://hubble.com/community/guides/use-led-loop-verify-toolchain-flashing-hardware/
1•jmarbach•24m ago•0 comments

Show HN: Glue – new language and toolchain for data modeling

https://guywaldman.com/posts/introducing-glue
2•guywald•24m ago•0 comments

Tech-Savvy Observability

https://github.com/heyojules/lotus
1•gintokinx•25m ago•0 comments

Show HN: Makethlm – combine make/just with LLM

https://github.com/latedeployment/makethlm
1•elegantgate•25m ago•0 comments

Show HN: Oxlo.ai – AI APIs with unlimited tokens and request based pricing

https://www.oxlo.ai/
1•Barathkanna•28m ago•0 comments

UNIX99, a UNIX-like OS for the TI-99/4A

https://forums.atariage.com/topic/380883-unix99-a-unix-like-os-for-the-ti-994a/
16•marcodiego•29m ago•0 comments

Traditional search is broken, so I tried fixing it

https://github.com/Shantanugupta43/SuggestPilot
1•shaanuknow•30m ago•0 comments

HackEurope 2026: A short rant on AI and hackathons

https://duti.dev/blog/2026/spr/
2•acheong08•31m ago•0 comments

OpenClaw overtakes Linux in GitHub popularity contest

https://www.star-history.com/#codecrafters-io/build-your-own-x&torvalds/linux&openclaw/openclaw&t...
2•whit537•32m 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?