frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Yearslong fight over users' right to tweak smart TV software heads to trial

https://arstechnica.com/gadgets/2026/05/inside-the-fight-to-force-vizio-to-share-linux-based-sour...
1•pabs3•1m ago•0 comments

SpaceX's historic IPO plans: Billions in losses and Musk's ownership

https://www.cnbc.com/2026/05/20/spacex-ipo-live-updates.html
1•1vuio0pswjnm7•5m ago•0 comments

Déjà moo: cows can recognise the faces of people they know

https://www.thetimes.com/uk/science/article/cattle-ability-recall-human-faces-ttn6v0nns
2•petethomas•7m ago•0 comments

BoE Governor says Plans to limit food prices 'not sustainable'

https://www.thetimes.com/business/economics/article/m-and-s-boss-attacks-preposterous-food-price-...
1•petethomas•9m ago•0 comments

I 100% vibecoded a webgame that makes money

https://gunguesser.com
1•abhahbnar•13m ago•0 comments

Musk's SpaceX Reveals Its Finances for the First Time

https://www.nytimes.com/2026/05/20/technology/elon-musk-spacex-ipo.html
2•1vuio0pswjnm7•14m ago•1 comments

Show HN: SkinMax – AI Skin Care Coach

https://howolddoyoulook.com/app
1•beast200•14m ago•0 comments

Anthropic says it's about to have its first profitable quarter

https://techcrunch.com/2026/05/20/anthropic-says-its-about-to-have-its-first-profitable-quarter/
1•nl•17m ago•1 comments

Jeff Bezos says bottom half of earners should pay zero in income taxes

https://www.cnbc.com/2026/05/20/jeff-bezos-income-taxes.html
1•khutorni•20m ago•1 comments

OpenAI Stargate: where the US sites stand

https://epoch.ai/blog/openai-stargate-where-the-us-sites-stand
2•nl•22m ago•0 comments

Meta Begins Laying Off Employees as It Transforms Around AI

https://www.wsj.com/tech/ai/meta-begins-laying-off-thousands-of-employees-as-it-transforms-around...
3•1vuio0pswjnm7•22m ago•0 comments

Wispr Flow Is Broken

https://old.reddit.com/r/WisprFlow/comments/1thejf4/wisprflow_what_is_going_on/
1•ayushchat•22m ago•0 comments

Put yourself in a loop with your coding agents

https://github.com/AsteroidHunter/expediter
2•AsteroidHunter•23m ago•1 comments

Dumbshit.app

https://dumbshit.app
2•robsch•23m ago•0 comments

DiffsHub

https://diffshub.com/
2•tosh•24m ago•0 comments

PR Diff Speed Matters

https://twitter.com/mitchellh/status/2057229385963618787
2•tosh•25m ago•0 comments

[RFC] Open Access to Standards Documents – LLVM Project

https://discourse.llvm.org/t/rfc-open-access-to-standards-documents/90856
1•matt_d•26m ago•0 comments

Show HN: FKS2G – LLM-backed metrics for deciding how closely to review code

https://github.com/kmdupr33/fks2g
1•kmdupree•28m ago•0 comments

The Unreasonable Effectiveness of HTML

https://claude.com/blog/using-claude-code-the-unreasonable-effectiveness-of-html
1•galsapir•30m ago•1 comments

Sparrow compliance check for Linux configs

https://github.com/melezhik/Sparrow6/blob/master/documentation/taskchecks.md
1•melezhik•33m ago•1 comments

A Practical Guide to Profiling in Go

https://blog.jetbrains.com/go/2026/05/20/golang-profiling-guide/
3•signa11•42m ago•0 comments

Curly braces: An evolution of UNIX and C

https://thalia.dev/blog/unix-braces/
2•matt_d•42m ago•0 comments

Deterministic ad engine that refuses to lie – verified with SQL

https://alloceraintelligence.com/
1•allo1•43m ago•1 comments

The Sound of Cancer

https://twitter.com/Elise__Jenkins/status/2056938362548756561
1•pppone•47m ago•0 comments

Technology usually creates jobs for young, skilled workers. Will AI do the same?

https://news.mit.edu/2026/technology-creates-jobs-young-skilled-workers-ai-0521
2•SVI•47m ago•2 comments

Dirplot

https://deeplook.github.io/dirplot/
3•jonbaer•48m ago•0 comments

NanoTag: Systems Support for Efficient Byte-Granular Overflow Detection on Arm

https://github.com/ice-rlab/NanoTag
1•matt_d•50m ago•0 comments

Zed Terminal Threads

https://zed.dev/blog/terminal-threads
3•_august•52m ago•0 comments

He Lost It at the Movies

https://www.theideasletter.org/essay/he-lost-it-at-the-movies/
1•tintinnabula•54m ago•0 comments

Microsoft's LinkedIn Is Cutting Jobs in Latest Industry Cull

https://www.bloomberg.com/news/articles/2026-05-13/microsoft-s-linkedin-is-cutting-jobs-in-latest...
1•1vuio0pswjnm7•54m 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?