frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Front end skill pack for AI agents, with machine-enforced quality gates

https://krishna-modi12.github.io/frontend-design-pro/
1•KrishnaModi12•33s ago•0 comments

Why memories get fuzzier with age – and what replaces them

https://www.uea.ac.uk/about/news/article/why-memories-get-fuzzier-with-age-and-what-replaces-them
1•XzetaU8•3m ago•0 comments

Apple Guts Vision Pro Gaming and Immersive Video Teams, Trims Siri Staff

https://www.macrumors.com/2026/08/21/apple-guts-vision-pro-teams/
1•tosh•5m ago•0 comments

The Instant team joins OpenAI

https://www.instantdb.com/essays/instant_team_joins_openai
2•emp_•11m ago•2 comments

Void Tools API – Blockchain Tools for AI Agents (Pay in Void Tokens)

1•void_protocol•12m ago•0 comments

Anonymous GitHub

https://anonymous.4open.science/
1•habi•13m ago•1 comments

Programming Language Semantics and Memory Safety

https://burakemir.ch/post/formal-semantics/
1•matt_d•14m ago•0 comments

K-Way Merge

https://maksimkita.com/blog/k-way-merge.html
1•kitaisreal•16m ago•0 comments

Show HN: ScreenshotM8 – Full Page Screenshot Tool

https://chromewebstore.google.com/detail/screenshotm8-screenshot-t/ocmjnpmhpndnpmgipknfbhcjdgokgiml
1•louisblythe•18m ago•0 comments

Use medium thinking effort instead of xhigh

https://xcancel.com/antibot/captcha
1•vismit2000•19m ago•1 comments

Show HN: Is-agentic – Score how agentic your product and site is

https://is-agentic.com
1•andrewqu•20m ago•0 comments

Never Be Angry at Work

https://www.seangoedecke.com/you-should-never-be-angry-at-work/
6•vismit2000•26m ago•1 comments

The Captcha Game

https://john.fun/captcha-game
1•signa11•26m ago•0 comments

SlimSpec: Faster speculative decoding without cutting the vocabulary

https://nebius.com/blog/posts/slimspec-faster-speculative-decoding-without-cutting-the-vocabulary
1•imnot404•27m ago•0 comments

Origins of Self-Awareness – from experiencing consciousness to feeling grateful

https://chatgpt.com/share/6a892f1d-1968-83e8-9471-018eb408ba2d
1•acchow•31m ago•0 comments

Show HN: Blitz – Process management CLI that doesn't suck

https://github.com/hunzo1/Blitz
1•vrox•31m ago•0 comments

Keytrace

https://keytrace.dev/blog/introducing-keytrace
2•jcbhmr•37m ago•0 comments

The Trouble with Trying to Turn Viral Videos into Blockbusters

https://www.theatlantic.com/culture/2026/08/youtube-reddit-hollywood-movies-backrooms-obsession/6...
1•paulpauper•40m ago•0 comments

Silicon Valley Executives Are Tech Fans. Just Not for Their Kids

https://www.nytimes.com/2026/08/18/technology/silicon-valley-tech-fans-children.html
3•paulpauper•42m ago•0 comments

Why the Closing of Harvard's Writing Center Matters

https://www.theatlantic.com/culture/2026/08/harvard-writing-center-closure/688331/
2•paulpauper•44m ago•0 comments

Math of Spider Wbes

https://digitalcommons.denison.edu/cgi/viewcontent.cgi?article=1036&context=synapse
2•marysminefnuf•51m ago•0 comments

Berkeley Mystery Walls

https://www.atlasobscura.com/places/berkeley-mystery-walls
1•Jimmc414•58m ago•0 comments

Roomy Is Generally Available

https://blog.roomy.space/3mplw6vvw4s23
1•abc42•59m ago•1 comments

How to Visualize Millions of Parcels on a Map

https://walker-data.com/posts/millions-of-parcels/
1•the-mitr•1h ago•0 comments

KDE Linux Experiences

https://akselmo.dev/posts/kde-linux-experiences/
1•watermelon0•1h ago•0 comments

4 in 10 travellers visit tourist sites to capture social media content

https://www.tuigroup.com/en/newsroom/news/travel-in-the-age-of-scrolling-tui-musement-research-re...
32•Markoff•1h ago•38 comments

ESP32-S31 dual-core RISC-V SoC is getting official Linux support

https://www.cnx-software.com/2026/08/22/espressif-systems-releases-a-linux-bsp-developer-preview-...
1•pyprism•1h ago•0 comments

Meta $1.4T threat could mean 'turning in the keys and walking away'

https://fortune.com/article/meta-faces-1-4-trillion-threat-stakes-of-case-reach-across-tech-08-20...
5•1vuio0pswjnm7•1h ago•2 comments

GPT 5.6 Sol 20% price reduction

https://developers.openai.com/api/docs/models/gpt-5.6-sol
2•izakfr•1h ago•1 comments

Suspicions of hitting daughter between a congressman and his ex-wife

https://www.washingtonpost.com/investigations/2026/08/21/inside-police-investigation-how-rep-max-...
3•doctorpangloss•1h 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?