frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Anthropic files lawsuit against Abnormal

https://twitter.com/evanreiser/status/2074577564006519020
1•warthog•28s ago•0 comments

PixelSat I Software Part 1: Comms System

https://www.projectpixelorbital.com/software-1/
1•aadishv•1m ago•0 comments

Google Search lets creators know more about their reach

https://www.theverge.com/tech/961955/google-search-console-reach-platform-properties
1•herbertl•1m ago•0 comments

Show HN: Perks Reminder – open-source tracker for expiring card benefits

https://github.com/lifan-builds/perks-reminder
1•lifan-builds•2m ago•0 comments

Tried a new VSCode Agent tonight. Like it. Thought I'd pass it on

https://buildbygrok.gumroad.com/l/BuildwithChat
1•BigJimTom•4m ago•0 comments

Show HN: A LinkedIn / X CLI for your agents

https://usesocial.dev
1•knrz•5m ago•0 comments

Show HN: PGP made convenient (encrypted at rest with passkeys)

https://chromewebstore.google.com/detail/pgp-tools-encrypt-decrypt/pgpcdgggohpbombhkffjoiiafdlfcpgp
1•acorn221•6m ago•0 comments

A 13th-Century Enumeration Algorithm, Ignored for 700 Years

https://blog.klipse.tech/aboulafia/2026/07/06/a-13th-century-enumeration-algorithm-ignored-for-70...
1•viebel•7m ago•0 comments

Dahl: Free 100M AI tokens for Kimi and MiniMax models

https://inference.dahl.global/
4•litppicho•8m ago•3 comments

The "Merge" with AI Has Begun

https://www.thenation.com/article/society/the-merge-with-ai-has-already-begun/
2•petethomas•12m ago•0 comments

I had to give a wrong answer to get the job (2017)

https://dewitters.com/i-had-to-give-a-wrong-answer-to-get-the-job/
1•downbad_•15m ago•0 comments

Ask HN: Please give us an option to hide our username in the upper right corner

1•swingandamiss•16m ago•1 comments

Designing Firefox for the Future

https://blog.mozilla.org/en/firefox/new-firefox-design/
2•iBelieve•19m ago•1 comments

Most slopcode projects are abandoned and deleted within months of release

https://www.osnews.com/story/145469/most-slopcode-projects-are-abandoned-and-deleted-within-month...
5•backlit4034•21m ago•1 comments

Ask HN: How do you keep documentation up to date with AI generated code?

1•ghosts_•22m ago•1 comments

Show HN: Free Mermaid Diagram Editor

https://moxiedocs.com/mermaid-diagram-editor
2•ghosts_•24m ago•0 comments

How OpenAI Delivers Low-Latency Voice AI for 900M Users

https://blog.bytebytego.com/p/how-openai-delivers-low-latency-voice
1•gmays•27m ago•0 comments

Muse Image and Muse Video, the first media generation models developed by Meta

https://twitter.com/AIatMeta/status/2074577662840832382
2•jeudesprits•29m ago•0 comments

Cognitive and affective effects of L-Theanine: review of 31 randomized trials

https://www.nature.com/articles/s41380-026-03727-9
1•bookofjoe•31m ago•2 comments

Windows is watching: Anti-piracy tool fingers Scattered Spider suspect

https://www.theregister.com/cyber-crime/2026/07/07/windows-is-watching-anti-piracy-tool-fingers-s...
3•Mgtyalx•32m ago•0 comments

Git Hash Chain Malleability

https://arxiv.org/abs/2607.02820
1•xqb64•32m ago•0 comments

Neural Geometry in Vision Models with Block-Sparse Featurizers

https://www.goodfire.ai/research/bsf-vision
2•babelfish•32m ago•0 comments

J-Space: Where Claude silently performs reasoning steps

https://twitter.com/AnthropicAI/status/2074185358678364414
2•jhatax•37m ago•3 comments

Bond Traders Stunned as Losses on SpaceX's New Debt Keep Growing

https://www.bloomberg.com/news/articles/2026-06-26/bond-traders-stunned-as-losses-on-spacex-s-new...
2•1vuio0pswjnm7•39m ago•1 comments

APS-CYBER: A state-transition security platform to detect attacks before impact

https://www.apslogic.org/cyber.html
1•lombardo_e•40m ago•0 comments

FrankenMarkdown

https://franken-markdown.com/
6•handfuloflight•45m ago•1 comments

Bees 'facial expressions' may be a sign of their inner lives

https://phys.org/news/2026-07-bees-facial.html
1•indynz•45m ago•0 comments

Why the rise of open source AI isn't hurting Anthropic yet

https://techcrunch.com/2026/07/07/why-the-rise-of-open-source-ai-isnt-hurting-anthropic-yet/
2•jack1689•47m ago•0 comments

Silent speech with ultrasound

https://alephneuro.com/blog/silent-speech
1•chrwn•47m ago•0 comments

Who's Keeping Fossil Fuels Alive? Taxpayers

https://www.bloomberg.com/opinion/articles/2026-07-05/who-s-really-keeping-fossil-fuels-alive-tax...
4•littlexsparkee•49m 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•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?