frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Compress PDF

https://www.pdffixnow.com/compress-pdf
1•instahotstar•38s ago•1 comments

PageIndex: Vectorless, Reasoning-Based RAG

https://github.com/VectifyAI/PageIndex
1•anujbans•4m ago•0 comments

AI Agent Broke Its Promise. Now What?

https://www.armalo.ai/blog/ai-agents-breaking-commitments-accountability
1•ArmaloAI•7m ago•0 comments

Ghinst – Install from GitHub release section to –/.local/bin

https://github.com/tebeka/ghinst
1•tebeka•8m ago•0 comments

Restoring ReBoot from the Original Master D1 Tapes [video]

https://www.youtube.com/watch?v=GlkJFOw-99U
1•SteveHawk27•9m ago•0 comments

Show HN: The Playwright GitHub Repositories Worth Studying

https://testdino.com/blog/playwright-github-repositories/
1•tanmay001•16m ago•1 comments

Teaching Coding Agents to Drive Cmux

https://www.bounds.dev/posts/teaching-claude-code-to-drive-cmux/
1•earthlinks•16m ago•1 comments

The cognitive cost of easy answers, a lesson from RL

https://safeenough.substack.com/p/exploration-exploitation-and-thinking
2•psychedare•16m ago•0 comments

Washington Post – In the Long Run, Wars Make Us Safer and Richer (2014)

https://www.washingtonpost.com/opinions/in-the-long-run-wars-make-us-safer-and-richer/2014/04/25/...
1•N_Lens•18m ago•1 comments

The Self-Help Trap: What 20 Years of "Optimizing" Has Taught Me

https://tim.blog/2026/03/04/the-self-help-trap/
3•bonefishgrill•24m ago•0 comments

Improving Django Admin UI with Django-unfold

https://unfoldadmin.com/
2•madatbay•27m ago•1 comments

A GB300 thread that running vLLM and SGlang on it

https://twitter.com/xu_paco/status/2029433226234868178
1•pacoxu2025•29m ago•0 comments

Show HN: Your AI Slop Bores Me

https://www.youraislopbores.me/
3•mikidoodle•29m ago•0 comments

Gogcli – Google in Your Terminal

https://github.com/steipete/gogcli
2•nstj•34m ago•0 comments

Show HN: Nemilia – multi-agent AI workspace in a single HTML file, no back end

https://github.com/luislopez1212/Nemilia
2•Nemilia•36m ago•0 comments

FFmpeg at Meta: Media Processing at Scale

https://engineering.fb.com/2026/03/02/video-engineering/ffmpeg-at-meta-media-processing-at-scale/
2•articsputnik•36m ago•0 comments

The New York Earth Room

https://www.niche-museums.com/117
2•Tomte•39m ago•0 comments

The Calm List

https://world.hey.com/raulp/the-calm-list-cb7be8f8
3•adrianthedev•39m ago•0 comments

I refused to pay $30/month for Superhuman so I built my own Gmail organizer

https://github.com/Lakshay1509/NeatMail
3•mafia15•41m ago•1 comments

Tuneithub.com turn any Markdown into Google Docs like collab

https://www.get-colibri.com/
3•mlysk•42m ago•1 comments

Remote contractors are now the new normal for businesses

2•emmanol•42m ago•0 comments

Muon: An optimizer for hidden layers in neural networks

https://kellerjordan.github.io/posts/muon/
2•tosh•44m ago•0 comments

modded-nanogpt: NanoGPT (124M) in 2 minutes

https://github.com/KellerJordan/modded-nanogpt
2•tosh•44m ago•0 comments

The day Iran buried Ayatollah Khomeini (2015) [video]

https://www.bbc.com/news/av/magazine-32938264
2•thomassmith65•50m ago•1 comments

Iraq suffers power grid blackout due to technical fault

https://www.reuters.com/business/energy/iraq-suffers-power-grid-blackout-due-technical-fault-2026...
3•yreg•51m ago•1 comments

Sneak peek at the redesigned Stack Overflow

https://stackoverflow.blog/2026/02/25/your-sneak-peek-at-the-redesigned-stack-overflow/
2•SerCe•52m ago•0 comments

How Vulnerable Are Computers to 80-Year-Old Spy Technique? Congress Wants Answer

https://www.wired.com/story/how-vulnerable-are-computers-to-an-80-year-old-spy-technique-congress...
2•walterbell•54m ago•0 comments

Zorin OS: The Alternative to Windows and macOS

https://zorin.com/
2•thunderbong•57m ago•1 comments

Google Play Store will shame developers of sloppy, battery-wasting apps

https://www.neowin.net/news/google-play-store-will-shame-developers-of-sloppy-battery-wasting-apps/
1•bundie•57m ago•0 comments

Show HN: The Forensic Mirror – Weaponizing LLMs for Cognitive Auditing

https://github.com/type-null/forensic-mirror
1•llmmirror•59m 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?