frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

SEC probes Jefferies over First Brands disclosures

https://www.ft.com/content/86d90ce5-5800-4514-a757-f46a38aa521d
1•zerosizedweasle•3m ago•0 comments

Apple TV Pulls 'The Hunt' Show over Plagiarism Claims

https://www.macrumors.com/2025/11/27/apple-tv-show-hunt-pulled-plagiarism-claims/
1•kotaKat•4m ago•0 comments

.NET 10 and NuGet Audit: Finding Root Packages for Transitive Vulnerabilities

https://www.appsoftware.com/blog/net-10-and-nuget-audit-identifying-root-packages-for-vulnerable-...
1•appsoftware•4m ago•0 comments

Why have so many people stopped posting on social media?

https://www.rte.ie/brainstorm/2025/1127/1546045-why-have-we-stopped-posting-on-social-media-psych...
1•austinallegro•4m ago•1 comments

Unprecedented levels of forever chemicals found in dolphins and whales

https://phys.org/news/2025-11-unprecedented-chemicals-dolphins-whales.html
1•measurablefunc•6m ago•0 comments

Idempotency Keys

https://www.morling.dev/blog/on-idempotency-keys/
1•redbell•8m ago•0 comments

A graph is worth 1000 tables

https://crimede-coder.com/blogposts/2025/GraphsBetterThanTables
1•apwheele•9m ago•0 comments

What does it mean to understand language?

https://arxiv.org/abs/2511.19757
1•sebg•10m ago•0 comments

Principles of Program Analysis

https://www.researchgate.net/publication/265352570_Principles_of_Program_Analysis
1•ibobev•13m ago•0 comments

Two truths of software development still valid in the age of AI

https://espen.wtf/articles/2025/11/two-truths-of-software-development-still-valid-in-the-age-of-ai/
2•ingve•18m ago•0 comments

Thanksgiving and the Lessons of Political Economy

https://marginalrevolution.com/marginalrevolution/2025/11/thanksgiving-and-the-lessons-of-politic...
1•shaftoe444•19m ago•0 comments

Replacing My Linux Desktop with Google Chrome

https://foxmoss.com/blog/dote/
1•foxmoss•21m ago•1 comments

Static Program Analysis

https://cs.au.dk/~amoeller/spa/
2•ibobev•23m ago•0 comments

Show HN: Daily-Updated Lists of Canadian CS Internships and New Grad Roles

1•hanzili•25m ago•0 comments

Porting Nanochat to Transformers

https://huggingface.co/spaces/nanochat-students/transformers
1•us321•28m ago•0 comments

D.C. Shooting Suspect 'Could Not Tolerate' Violence of His CIA-Backed Unit

https://www.nytimes.com/2025/11/27/us/national-guard-dc-shooting-suspect-cia-afghanistan.html
2•perihelions•28m ago•0 comments

High-Tech Employee Antitrust Litigation (2015)

https://en.wikipedia.org/wiki/High-Tech_Employee_Antitrust_Litigation
2•hackthemack•29m ago•0 comments

Europe thinks the unthinkable: Retaliating against Russia

https://www.politico.eu/article/europe-thinks-the-unthinkable-retaliating-against-russia-nato-cyb...
5•belter•31m ago•1 comments

Making complex JSON 58x faster, use 3,300x less memory, in ClickHouse

https://clickhouse.com/blog/json-data-type-gets-even-better
3•saisrirampur•32m ago•0 comments

Creating a Bespoke Data Diode for Air Gapped Networks

https://nelop.com/bespoke-data-diode-airgap/
2•sebg•32m ago•0 comments

Just-in-Time Thanksgiving Cookbook

https://cookwithbutter.com
1•edunteman•32m ago•0 comments

The Evidence That Ends the SEO and AEO Worldview

https://zenodo.org/records/17741447
1•businessmate•33m ago•1 comments

Free my pinky when scrolling

https://old.reddit.com/r/ChituSystemsOfficial/comments/1p7yuyk/free_my_pinky_when_scrolling/
2•us321•35m ago•0 comments

The Vibe Coding Advent Calendar

https://www.25daysofbuilding.com/
1•vel_cirapt_r•36m ago•1 comments

Robots and AI Are Already Remaking the Chinese Economy

https://www.wsj.com/tech/ai/ai-robots-china-manufacturing-89ae1b42
2•bookofjoe•39m ago•1 comments

What is GNOME OS? (2020)

https://blogs.gnome.org/alatiera/2020/10/07/what-is-gnome-os/
1•gudzpoz•40m ago•0 comments

AI Teddy Bears: A Brief Investigation

https://www.lesswrong.com/posts/aJAv7ky4LsH65qcx4/ai-teddy-bears-a-brief-investigation
2•nicetomeetyu•42m ago•1 comments

Ask HN: How do you trigger deployments in your workflow?

2•kingori•43m ago•1 comments

Trying Out C++26 Executors

https://mropert.github.io/2025/11/21/trying_out_stdexec/
1•ingve•45m ago•0 comments

Vex-TUI: fast and feature-rich terminal-based Excel and CSV viewer built with Go

https://github.com/CodeOne45/vex-tui
3•thunderbong•48m 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•6mo ago

Comments

nip•6mo 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•6mo 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•6mo 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•6mo 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•6mo ago
This is an advertisement
tomrod•6mo ago
I wish this were critical, but it is an ad for MCP.run.
nip•6mo ago
It’s both in my opinion and discussions can stem from the linked article

Many come to HN also for the comments

palmfacehn•6mo ago
Personally, I'm not a fan. I thought the proponent's view might stimulate a discussion.
FunnyLookinHat•6mo 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•6mo 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•6mo 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•6mo ago
This post has too many "shameless plugs" to be taken seriously.
smitty1e•6mo 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?