frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

I Let Google's Personal Intelligence Access My Life–and It's a Help

https://www.wsj.com/tech/ai/google-personal-intelligence-dreambeans-gemini-review-81f12a16
1•doener•2m ago•0 comments

Ask AI buttons like social media links for webpages

https://llmcheck.app/ai-ask-buttons/
1•loudsilence•3m ago•0 comments

Yap: A Particular Kind of Slop

https://mckayla.blog/posts/yap.html
1•eric_h•3m ago•0 comments

StateUI

https://github.com/idexus/StateUI
1•frizlab•4m ago•0 comments

FOSDEM 2026 – Mainline kernel for Fairphones – 2026 update [video]

https://www.youtube.com/watch?v=UnvKm3mzasI
1•pizzaiolo•4m ago•0 comments

Godot Sandbox: The Answer is 42

https://libriscv.no/blog/godot-sandbox-fortytwo/
1•fwsgonzo•7m ago•0 comments

Rig – Agentic Workflows in Rust

https://github.com/0xplaygrounds/rig
3•monneyboi•10m ago•0 comments

Cancer is a Quantum System

https://www.cuimc.columbia.edu/news/cancer-quantum
1•alephnerd•11m ago•0 comments

Show HN: The impact that made the Moon, 262k particles in a browser tab

https://gaploid.github.io/cosmic-collisions/
1•gaploid•12m ago•0 comments

7th Circuit Rules AI-Generated CSAM Is Protected Speach

https://media.ca7.uscourts.gov/cgi-bin/OpinionsWeb/processWebInputExternal.pl?Submit=Display&Path...
2•piker•14m ago•0 comments

For better or worse, Yayoi Kusama's Infinity Rooms reshaped the world

https://www.cnn.com/2026/08/28/style/yayoi-kusama-infinity-mirrors-art-impact
1•reconnecting•15m ago•1 comments

Give Coding Agents Permission, Not Just Prompts

https://engineeringspec.org/blog/give-coding-agents-permission-not-just-prompts/
1•mak8•18m ago•0 comments

One 'absolutely prolific' male bird is keeping his species alive in the U.K

https://www.cbc.ca/lite/story/9.7323206
2•colinprince•18m ago•0 comments

Building an LLM runtime in 700 lines of C

https://github.com/ryanssenn/gemma4.c
3•ryansen•22m ago•1 comments

We made a new robot – Microduck [video]

https://www.youtube.com/watch?v=RAtzEyGBGFU
2•arbayi•22m ago•0 comments

E.V. Sales Are Rising After the Gulf Oil Shock. Here's Where.

https://www.nytimes.com/interactive/2026/08/18/climate/ev-car-sales-oil-prices.html
1•bookofjoe•22m ago•1 comments

Study links listening to live metal improves tolerance for pain, cold

https://gizmodo.com/study-links-listening-to-live-metal-with-an-improved-tolerance-for-pain-cold-...
2•HieronymusBosch•29m ago•1 comments

Stamping build info in constant memory

https://fzakaria.com/2026/08/25/stamping-build-info-in-constant-memory
1•ingve•31m ago•0 comments

My answer to AI burnout: more AI (but context is king)

https://sycdan.wordpress.com/2026/08/29/my-answer-to-ai-burnout-more-ai-but-context-is-king/
1•sycdan•33m ago•0 comments

Being kicked out of the tech industry

https://www.jacky.wtf/essays/2026/kicked-out/
3•birdculture•33m ago•1 comments

Rational quantum mechanics: Testing quantum theory with quantum computers

https://www.pnas.org/doi/10.1073/pnas.2523350123
2•dustingetz•34m ago•0 comments

Show HN: VT Code – a terminal coding agent with a human-reviewed WebMCP editor

https://vinhnx.github.io/VTCode/
1•vinhnx•36m ago•0 comments

Satellite images reveal scale of flood devastation in Nepal villages

https://www.bbc.com/news/articles/cd68vpjv21do
1•blondie9x•40m ago•0 comments

LoRA Primer

https://tinker-docs.thinkingmachines.ai/tinker/lora-primer/
1•tosh•41m ago•0 comments

Tech backlash reaches fever pitch as AI angst collides with social media fears

https://www.cnbc.com/2026/08/29/tech-backlash-ai-data-centers-elections.html
2•1vuio0pswjnm7•47m ago•0 comments

Meta's Newspaper Ad Blitz Ups Pressure on Social Media Rivals

https://www.bloomberg.com/news/articles/2026-08-28/meta-s-newspaper-ad-blitz-ups-pressure-on-soci...
1•1vuio0pswjnm7•49m ago•0 comments

Death, Dying, and the Memorialization of the Dead

https://macleki.org/stories/death-dying-and-the-memorialization-of-the-dead/
1•thunderbong•50m ago•0 comments

Show HN: Pico-Faces – A diffusion transformer image generator on a RP Pico 2 MCU

https://github.com/cpldcpu/pico-faces
4•cpldcpu•50m ago•0 comments

What It Took to Dismantle the Most Powerful Company in the World (NYT)

https://www.nytimes.com/2026/08/28/opinion/ai-power-lobbying-military-britain-east-india-company....
3•scrollop•56m ago•1 comments

Have an Agent Babysit Your Deployments

https://blog.exe.dev/athena-deploys-exe
1•gk1•1h 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?