frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The ChatGPT browser is dead

https://www.theverge.com/ai-artificial-intelligence/963654/openai-chatgpt-atlas-ai-browser-shut-d...
1•mattas•2m ago•0 comments

Two Case Studies of NaN

https://sebsite.pw/w/20260709-nan.html
1•ryantsuji•2m ago•0 comments

Exit Chat Control

https://exitchatcontrol.org/
1•mparramon•2m ago•0 comments

Show HN: BrowserBox over SSH – The KRNL Browser

https://win9-5.com/krnl
1•keepamovin•4m ago•0 comments

A man who would change Russia

https://www.economist.com/leaders/2026/07/09/the-man-who-would-change-russia
1•andsoitis•5m ago•0 comments

Japan does not cut down centuries-old trees for development; they relocate them

https://timesofindia.indiatimes.com/science/japan-does-not-cut-down-centuries-old-trees-for-devel...
1•speckx•7m ago•0 comments

Show HN: Resultant Engineering Student Tools Website

https://resultant.tools/
1•will2092347•10m ago•0 comments

OpenAI's API can now keep reasoning across turns instead of discarding it

https://drop-05a4352b-803.sophisticated-stay.workers.dev
2•CjHuber•10m ago•0 comments

Camera Chase Vehicle

https://transistor-man.com/gimbal_camera_rover.html
1•geerlingguy•12m ago•0 comments

Microsoft's carbon emissions went up 25 percent in 2025

https://www.theverge.com/tech/963728/microsoft-sustainability-report-2026
1•1vuio0pswjnm7•13m ago•0 comments

Fast Perceptual Image and Video Metrics

https://github.com/halidecx/fmetrics
1•computerbuster•17m ago•1 comments

Show HN: Free AI transcription with faster-whisper on Colab T4 GPU

https://github.com/arthiccc/gcolab-whisper
1•arthiccc•18m ago•0 comments

A plain-English guide to moving a Windows 10 PC to Linux Mint

https://tomadelstein.substack.com/p/chapter-one-linux-system-administration
2•tadelstein•18m ago•0 comments

Xcancel Is Down?

1•DivingForGold•19m ago•4 comments

Show HN: Debloat Slack – Get rid of Slackbot, AI upsells and other annoyances

https://github.com/benri-ai/slack-debloat
2•ed_mercer•21m ago•0 comments

We Helped an Auto Parts Plant Cut MES Query Times by Up to 116x

https://medium.com/@DolphinDB_Inc/how-we-helped-an-auto-parts-plant-cut-mes-query-times-by-up-to-...
1•yiweileng•23m ago•0 comments

Orbitiny Desktop Pilot X Released

https://orbitiny.com/orbitiny-pilot-x-released/
1•speckx•24m ago•0 comments

America's Greatest Hot Dog

https://www.theringer.com/2026/07/02/food/costco-hot-dog-history-explained-cheap
1•gmays•24m ago•0 comments

Show HN: We beat Gemini Embedding 2 by training only 16M params (open weights)

https://huggingface.co/EximiusLabs/fusion-embedding-1-2b-preview
6•abtonmoy•24m ago•0 comments

Prehistoric cave discoveries hint at shared culture between Neanderthals humans

https://www.cnn.com/2026/07/07/science/turkey-cave-neanderthals-humans-shared-culture
1•Bender•25m ago•0 comments

Microsoft data centers will use 8.4M gallons of water per year (2025)

https://www.wpr.org/news/microsoft-data-centers-8-million-gallons-water-each-year
2•1vuio0pswjnm7•25m ago•0 comments

Interesting LLM visualization I stumbled upon

https://www.paradigm.xyz/
2•afunk•25m ago•1 comments

OpenAI's Fidji Simo steps down

https://www.reuters.com/business/openais-applications-chief-fidji-simo-step-down-2026-07-09/
2•abawany•26m ago•0 comments

Flavor Flav and Paris Hilton team up to handle US women's hockey team travel

https://bsky.app/profile/katzish.bsky.social/post/3mq6eyvafbc22
1•mooreds•26m ago•0 comments

Apple's new iPhone comes with Israeli chips

https://nonogra.ph/apples-new-iphone-comes-with-israeli-chips-05-21-2026
6•arkhiver•27m ago•3 comments

Show HN: FOMO – Turn a team's browsing into shared research insight

https://usefomo.co
1•JadAmmar•31m ago•0 comments

3D pelican riding a tricycle (among other rides)

https://percys-garage-3d.openai.chatgpt.site
1•elicash•34m ago•1 comments

Kalshi in talks to expand never-expiring derivatives to new areas

https://www.reuters.com/business/finance/kalshi-talks-with-regulators-expand-never-expiring-deriv...
1•petethomas•35m ago•0 comments

Problem with Muse Spark 1.1

1•mzubairtahir•36m ago•0 comments

Can We Understand How Large Language Models Reason?

https://cacm.acm.org/news/can-we-understand-how-large-language-models-reason/
1•pseudolus•38m 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?