frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Attention is all you need: Rohan Kumar on using social media for fun and profit

https://sfalexandria.com/posts/rohans-attention/
1•wahnfrieden•1m ago•0 comments

The End of the Coder?

https://cacm.acm.org/news/the-end-of-the-coder/
3•pseudolus•4m ago•0 comments

Are insecure code completions in PyCharm a vulnerability?

https://sethmlarson.dev/are-insecure-code-completions-a-vulnerability
1•12_throw_away•5m ago•0 comments

Fruit Machine (Homosexuality Test)

https://en.wikipedia.org/wiki/Fruit_machine_(homosexuality_test)
1•thunderbong•8m ago•0 comments

Anthropic's Fable Jailbreak (Circumvent safety nets)

https://github.com/0xSufi/fable-jailbreak/
1•binyu•10m ago•0 comments

How AI Agents Reshape Knowledge Work

https://research.perplexity.ai/articles/how-ai-agents-reshape-knowledge-work
1•gmays•15m ago•0 comments

Ask HN: Releasing code under AGPLv3, but want to block LLM reconstruction?

3•zionsati•16m ago•0 comments

Become a Happier Person

https://www.psychologytoday.com/gb/blog/self-made/202606/become-a-happier-person
2•geoffbp•17m ago•0 comments

Show HN: Headroom – Claude Code usage limits, live in the macOS menu bar

https://headroom.walls.sh/
1•patwalls•23m ago•0 comments

Pynder – crowdsourcing and tracking scam call data

https://pynder.net/
1•schwwaaa•24m ago•0 comments

Show HN: Built a public demo to explore SpaceX's IPO filing using multimodal RAG

https://www.calypso.so/demos/spacex-ipo-filing
3•gabamnml•25m ago•1 comments

I Built a Hazel Alternative for Mac with AI Rule Generation

https://medium.com/@jamal_davis/i-built-a-hazel-alternative-for-mac-with-ai-rule-generation-heres...
1•Gotoorbitapp•26m ago•0 comments

Auto-geo – open-source CLI for GEO that helps get your brand mentioned by LLMs

https://github.com/shadowresearch/auto-geo
1•jessen-gibbs•31m ago•1 comments

The Parable of the Talents

https://slatestarcodex.com/2015/01/31/the-parable-of-the-talents/
1•shadow28•34m ago•0 comments

Manus registered my domain in their own name and won't release it

1•AeonCa•35m ago•1 comments

Co-Existence and the End of Co-Intelligence

https://www.oneusefulthing.org/p/co-existence-and-the-end-of-co-intelligence
1•paulpauper•35m ago•0 comments

The Labor Share Fell. So What?

https://marginalrevolution.com/marginalrevolution/2026/06/the-labor-share-fell-so-what.html
1•paulpauper•36m ago•0 comments

I've Solved Content Discovery Conditions May Apply

https://philosophybear.substack.com/p/ive-solved-content-discovery-conditions
1•paulpauper•36m ago•0 comments

Windows 11 sucks slightly less due to June update

https://www.engadget.com/2191909/windows-11-sucks-slightly-less-now-thanks-to-a-june-update/
6•NordStreamYacht•42m ago•0 comments

China-linked operatives used ChatGPT to influence data centers debate

https://www.axios.com/2026/06/10/openai-china-ai-data-center-tariffs-chatgpt
3•alephnerd•44m ago•1 comments

The Social Reckoning (official teaser trailer) [video]

https://www.youtube.com/watch?v=gM4LkaXwGuY
1•Fricken•47m ago•0 comments

WebODM: The Missing Guide

https://webodmbook.com
1•pierotofy•47m ago•0 comments

Plants Could Be Used to Grow Medicines in Space

https://today.ucsd.edu/story/plants-could-be-used-to-grow-medicines-in-space-study-shows
1•gmays•53m ago•0 comments

Starlink: The Constellation, Live

https://sheets.works/data-viz/starlink
1•jonbaer•54m ago•0 comments

Ask HN: Someone started a company same name, same city, industry

1•bxclltkfz•54m ago•0 comments

AdBreak – Jailbreaking the Kindle

https://kindlemodding.org/jailbreaking/AdBreak/
1•nivethan•56m ago•0 comments

The First 100 Wikipedia Pages

https://en.wikipedia.org/wiki/Wikipedia:First_100_pages
2•bananamogul•56m ago•2 comments

Return on Tokens (Rot)

https://www.notboring.co/p/return-on-tokens-rot
1•thedreammachine•57m ago•0 comments

Stop the Surveillance State [pdf]

https://epic.org/wp-content/uploads/2026/04/EPIC-Stop-the-Surveillance-State-5.pdf
1•Cider9986•57m ago•0 comments

Few things in DC are more predictable than Congress renewing surveillance powers

https://xcancel.com/RepThomasMassie/status/2064849178249892220
4•Cider9986•59m 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?