frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Does anyone run Postgres without PgBouncer?

https://www.brandur.org/fragments/postgres-without-pgbouncer
1•paperwhitez•14m ago•0 comments

Show HN: Don't Hit Send – the model answers while you type

https://github.com/scalattice/dont-hit-send
1•RomulusHill•14m ago•0 comments

Homotopy Type Theory – Univalent Foundations of Mathematics (2013)

https://hott.github.io/book/hott-online.pdf.html
1•peter_d_sherman•16m ago•1 comments

macOS defaults list: Incomplete list of macOS defaults commands with demos

https://macos-defaults.com
3•zdw•16m ago•0 comments

We blind-tested ChatGPT, Claude, and Gemini on 20 everyday tasks (Open Dataset)

https://dailyskill.ai/ai-benchmark-2026/
1•dubaimark•24m ago•0 comments

Maven Robotics wants to steal your robot deployment deal

https://techcrunch.com/2026/09/10/maven-robotics-wants-to-steal-your-robot-deployment-deal/
1•soltanov•24m ago•0 comments

Ask HN: What's a good "semi-dumb" phone/watch for kids?

3•funkaster•25m ago•1 comments

Anthropic reveals rogue AI agents hate CAPTCHAs

https://techcrunch.com/2026/09/10/anthropic-reveals-rogue-ai-agents-hate-captchas-just-like-you/
1•soltanov•25m ago•0 comments

Google Launches Meridian GeoX Globally

https://developers.google.com/meridian/geox
1•soltanov•28m ago•0 comments

OpenAI agents attacked RubyGems back in May

https://simonwillison.net/2026/Sep/12/openai-agents-rubygems/
3•lumpa•34m ago•0 comments

How the U.S. Space Force Is Used in Wars Today [video]

https://www.youtube.com/watch?v=RGcRuej-LVE
1•handfuloflight•34m ago•0 comments

Show HN: Menu Hub – a native macOS menu bar manager in SwiftUI/AppKit

https://github.com/Talljack/menu-hub/releases/tag/v0.1.5
1•talljack•38m ago•0 comments

notatallshaw/nab: PubGrub-based dependency resolver for Python packages

https://github.com/notatallshaw/nab
2•Ravencentric•46m ago•1 comments

A method for finding interrelations bethween constants of physics and maths

https://sinscienceandspirituality.blogspot.com/2018/05/the-joys-of-reverse-polish-notation.htm
1•djbarrow•48m ago•0 comments

Pacman AI framework for controlling fusion systems safely makes key decisions

https://www.pppl.gov/news/2026/pacman-ai-framework-controlling-fusion-systems-safely-makes-key-de...
1•o4c•49m ago•0 comments

US lawmakers urge secretive British court to open up about Apple case

https://www.theguardian.com/us-news/2026/sep/11/congress-uk-court-apple-encrypted-data-case
1•CGMthrowaway•49m ago•0 comments

Handshake, not a drug deal? San Francisco police drone case falls apart

https://missionlocal.org/2026/08/sfpd-drone-arrest-charges-dismissed-rtic/
1•aray07•49m ago•0 comments

Why AI chatbots make bad tutors

https://www.heyaristotle.com/blog/why-ai-chatbots-make-bad-tutors
2•rshanreddy•52m ago•0 comments

Nobody Believes It, Everybody Does It

https://blog.jim-nielsen.com/2026/nobody-believes-it-everybody-does-it/
2•aray07•55m ago•0 comments

How good are LLMs at porting software in 2026?

1•estranhosidade•55m ago•0 comments

This is the world's cheapest SOLAR CAR [video]

https://www.youtube.com/watch?v=Hk6aTKV-des
1•thunderbong•57m ago•0 comments

2026 January to May List of LLM Research Papers: Sebastian Raschka

https://magazine.sebastianraschka.com/p/llm-research-papers-2026-part1
2•Alien1Being•1h ago•0 comments

Usenet rewind archive search engine

https://www.usenet-rewind.com/
15•cstadler1869•1h ago•1 comments

Why the AI race has its creators fearing human extinction

https://www.ft.com/content/b7fe0fe0-0463-4f55-9590-0a7d08d8fe66
1•nprateem•1h ago•0 comments

Show HN: NodehistJ – FTN Nodelist Server

https://github.com/oldzoomer-ru/nodehistj
1•oldzoomer•1h ago•2 comments

AI Kills Everybody or Doomer Psyop? (All in Podcast)

https://www.youtube.com/watch?v=cvxjqbfLVk0
1•mudil•1h ago•0 comments

Ask HN: What do you do about API keys?

1•stickynotememo•1h ago•2 comments

Building Specialized Systems We Can Trust with Agents

https://skydiscover-ai.github.io/blog-skysynth.html
2•matt_d•1h ago•0 comments

Clay Mathematics Institute on the Navier-Stokes Problem

https://www.claymath.org/news/navier-stokes-announcement/
21•rvz•1h ago•2 comments

Szmalcownik

https://en.wikipedia.org/wiki/Szmalcownik
1•firefax•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?