frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Open in hackernews

MCP Is Dead

https://www.quandri.io/engineering-blog/mcp-is-dead
35•nadis•40m ago

Comments

c0rruptbytes•27m ago
is this post old? MCP context poisoning was fixed like months ago

i personally was anti-MCP but they just work better in terms of tool search than a CLI, especially with the idea of tool nudging

JoshGlazebrook•26m ago
> Update: Since these measurements were taken, Claude Code has rolled out Tool Search with Deferred Loading, which loads MCP tool schemas on-demand and reduces context usage by 85%+. The context bloat described in Problem 1 is largely addressed for users on current Claude Code versions. The performance, debugging, and architectural arguments below still apply.

pretty much

Apocryphon•19m ago
Not providing a publishing date is real maddening.
zvoque•27m ago
I've thought that skills and small scripts > MCP for quite a while now, tried out MCP in the early days (official ones, ones i made for scripts i already had), but they always end up using more tool calls/tokens than if i had just written a script + skill for claude.
eikenberry•24m ago
MCP seems like what you'd do when you want to encapsulate and share a skill+script in a standard way.
noodletheworld•20m ago
You can share a skill by copy pasting the text file to someone in slack.

Its not that hard.

zvoque•3m ago
personally if i have the need to move a skill/script, etc. to another one of my machines, i'll make a git repo for them (if they aren't already on git)
0907•25m ago
I'll kick myself for not remembering, but there was a fantastic article which suggested that MCP works at org level when unified, safe, access to internal utility APIs need to be given to non-technical staff who do use internal agent tools. Codify your workflow(s) via skills and share across instances, anything that needs context aware API access should be mcp...
gk1•21m ago
Exactly right. Co’s like Runlayer are growing like wild exactly for this reason. Without a central control plane MCP is a minefield.
CharlieDigital•18m ago
This one? https://chrlschn.dev/blog/2026/03/mcp-is-dead-long-live-mcp/
bb88•13m ago
So is this in lieu of using permissions to protect apis? Because it seems like API's should have some kind of permission mechanism around them anyway.
thenewnewguy•24m ago
These AI slop articles about AI are getting especially boring to read.

> Problem 1: It Devours the Context Window

Don't harnesses support progressive discovery these days?

Claude (200K).... GPT-4o..........?

> every MCP server adds a process layer between the LLM and the underlying API

But a CLI doesn't?

------------------

> Measurement: Tool Definition Sizes

> MCP Server: Linear, Notion, Slack, Postgres

Oh, so these are the MCP servers that are examples of context bloat we're going to replace! Later in the article:

> At Quandri we use all three approaches side by side...

> MCP for services without a strong CLI (Slack, Linear, Notion)

kristopolous•18m ago
I have a fix for the context which involved an mcp search and execute gateway. Essentially you query for capabilities and you get search results with execution and requirement details

https://github.com/day50-dev/mcp-search-and-run

You can call it "rag for mcp". I was trying to push it hard a few months ago and nobody seemed to care but I'm all in if the timing has caught up to the tech.

It's nontrivial effort: basically a giant survey of all the mcp servers, running inference over them to figure out how to instrument them, cross referencing to make sure they are the "official" sources (or at least the ones that search engines think are) then using qdrant to do embeddings and reranking and offering it for free.

Yeah I make it free.

It's just a few thousand documents in practice. Exercise the largesse of the ewaste machine returning the results. I'll be the benefactor of that operation, no problem.

If people have become interested I'm all in. I'll bring the infra back up. I just don't want to spin my wheels on dead end streets

comrade1234•23m ago
So what's this saying? Rather than trust the llm to query external tools via mcp you should handle the external queries yourself? Otherwise the llm wastes a bunch of queries?
speff•20m ago
My mental model for MCPs is that it's like a Swagger/OpenAPI spec for LLMs. Point 2 doesn't make much sense in that context as it's describing MCP as a Swagger endpoint that's unstable.

Chrome/Ghidra MCP does have a tendency of crashing, but I'm not sure why this is. Is my way of thinking of MCP incorrect? If it really is a descriptor of how to talk to another tool, then why do they seem fragile at times? I feel like there's a gap in my knowledge somewhere.

dnnddidiej•19m ago
I think those are solvable problems. E.g. wrap mcp in skill or seperate forked (non context eating) call to smaller model to ask which mcps are applicable. Iet probably does this. Honestly I have not had issues with MCPs where I felt compelled to debug them.

MCPs are very useful when you don't have a CLI or you do but the MCP can handle auth like a proxy to something (e.g. Splunk). Or just for the USB-C analogy she gave.

bb88•19m ago
I was writing MCP servers, now I just write tools for agents to consume. It's often easier to simply write the tool you need and suggest to it to look at the tool to do that thing.

I was also surprised to find out Claude knew how to use the gitlab api with pointing it at the token var in the environment. But for corporations it might make more sense to use a cli to keep the secrets separate from the agent.

willio58•19m ago
> Using existing CLI directly: No context wasted on tool definitions

Can someone explain this to me? I've seen claude code try to run a not-well-known package and it basically shot in the dark a command, noticed that failed, then ran the help command for the cli tool to get a list of commands and what they do.

How is that different than passing the tools with an MCP? Like how are we saving context?

rgbrenner•19m ago
The article has no date on it, but says deferred tool loading is a recent update that occurred after the article was written. Deferred tool loading was added in Nov 2025: https://www.anthropic.com/engineering/advanced-tool-use

So these numbers are at least 7 months out of date. Why is this being posted now?

Edit: Just noticed at the top they reference an article from Feb 2026. So they wrote this article after Feb 2026, then when they realized it was already fixed in Claude Code, posted the notice at the top pretending it was fixed after the article was written. Nice.

CSMastermind•18m ago
Was this written by AI?

MCP is essentially just JSON RPC with a few special fields that must be included. I have reservations about JSON RPC, but there needs to be some 'service discovery' layer for LLMs to interface with.

It needs to be available in places like websites, desktop applications, backend services, etc. The CLI is only one place that these systems interface with.

Whatever you replace MCP with will be in a similar shape even if you specify a different communication protocol or different fields for tool discovery.

bluegatty•6m ago
It's the way that it occupies the context relatively permanently, that it doesn't come along with nice install/uninstall or discovery etc. is the problem.

'Skills' should all be based on MCP, they should load on demand, be very easily manageable and discoverable by humans and by AI, and then it would work

The scope was too narrow, given how it ended up being applied.

If they layer something on top of it, it may yet be revived.

madrox•17m ago
MCP is still great if you're running AI in an environment that precludes a shell while needing dynamic tool discovery, but that's a narrow set. People are learning how useful it is to give AI access to a shell. If you're giving them a shell, may as well give them a CLI.

However, I don't think that's what is really hurting MCP, because it could evolve. What really killed it was the standards process and enterprise groups getting ahold of it. It went into spec writing and got adjudicated into uselessness all while enterprise authentication groups were figuring out the best angle to make money on it. I listened to a pitch from Okta on MCP and they wanted to charge out the nose for it for no good reason.

mxstbr•8m ago
I run the team at OpenAI that's responsible for the ChatGPT App Store, Codex plugins, and all things MCP.

The thing that all these "MCP is dead" posts are missing is that whether or not MCP is used as a transport protocol is actually completely irrelevant.

The reason MCP isn't dead is because practically ~every company on the planet is building an MCP server. I know this because we interact with all of them. Most of these companies don't have a CLI. Many of these companies don't even have an external API! And yet, they're all building MCP servers.

And that's why MCP is not only not dead, but more important than ever.

Maybe we will turn every MCP server into a CLI under the hood. Maybe we'll use code mode. Maybe we'll implement tool search.

All of those are just implementation details to the much more important point: our AI agents are getting access to services they otherwise would never have had access to.[0] That's what matters.

So, is MCP dead as a direct communication layer for models to speak to? Maybe, maybe not. Is MCP dead as a protocol? Hell no, couldn't be further from the truth.

[0]: Although I will say the Codex app's computer & browser use features have made this statement a lot weaker than it used to be. If you haven't tried them yet—they're mindblowing.

Hacker News MCP Server

https://github.com/devrelopers/hackernews-mcp
2•DavidCanHelp•4m ago•2 comments

Spitting Out the Agentic Kool-Aid

https://openpath.quest/2026/spitting-out-the-agentic-kool-aid/
1•Curiositry•4m ago•0 comments

Bias Compounds, Variance Washes Out

https://convergentthinking.sh/posts/bias-compounds-variance-washes-out/
1•jxmorris12•10m ago•0 comments

I built an agent-run 1:1 email newsletter for competitive intelligence (free)

https://rivalnewsletter.com/
1•seandotexe•14m ago•1 comments

Brain Deserves a Better Controller with PiEEG XR

https://medium.com/@ildarr2016/your-brain-deserves-a-better-controller-with-pieeg-xr-765ee944fba2
1•Christiangmer•16m ago•0 comments

I built an interactive archive for official UFO/UAP files from war.gov

https://ufofiles.info
1•hades_sixy•17m ago•0 comments

The Genius: Mike Burrows' self-effacing journey through Silicon Valley (2007)

https://web.archive.org/web/20080217003150/http://www.stanford.edu/group/gpj/cgi-bin/drupal/?q=no...
1•1vuio0pswjnm7•20m ago•0 comments

Der Spiegel has made Nazi party membership cards searchable

https://www.spiegel.de/international/nazi-card-index-digitized-the-lies-come-to-an-end-a-22bfa301...
4•cwwc•23m ago•0 comments

Free website audit tool – enter a URL, get actionable fixes

https://outboundautonomy.com/audit
1•webperfdev•23m ago•1 comments

The early days – Steve Wozniak – TEDxBerkeley [video]

https://www.youtube.com/watch?v=PwSyjz1off4
1•MilnerRoute•25m ago•0 comments

Turn a folder of PDFs into a live JSON API

https://parseapi.dev/blog/show-hn-folder-to-json-api
1•expertsanoy•25m ago•0 comments

AWS reportedly to tuck Grok into Bedrock, despite zero enterprise demand

https://www.theregister.com/ai-ml/2026/05/29/aws-reportedly-to-tuck-elon-musks-grok-into-bedrock-...
4•Jimmc414•28m ago•0 comments

10.000 Pro Prompts

https://www.reddit.com/u/Beat_to_the_kiss/s/OfyRoPBMzP
2•Beko2210•28m ago•0 comments

What Employers Need to Know About China's New Rules for Over-Age Employees

https://www.littler.com/news-analysis/asap/beyond-retirement-what-employers-need-know-about-china...
3•petethomas•30m ago•0 comments

Lab-grown brain-spinal cord shows 'irreversible' nerve damage may be reversed

https://www.cam.ac.uk/research/news/lab-grown-brain-spinal-cord-model-shows-irreversible-nerve-da...
2•hhs•31m ago•0 comments

21 days, $5K, 7 AI agents: how a non-programmer built a talent marketplace

https://www.bearhugrecruiting.com/startup-recruiting/bearhug-network-origin-story
2•kraigward•34m ago•0 comments

Pigeons navigate using magnetic sensors in their livers

https://www.mpg.de/26511515/pigeons-navigate-using-magnetic-sensors-in-their-livers
1•hhs•34m ago•0 comments

ATF's New Rules Would Make Gun Records Searchable

https://medium.com/@delschlangen_22694/atfs-new-rules-would-make-gun-records-searchable-that-s-th...
3•delschlangen•36m ago•0 comments

Show3D – Visual Science Education Platform

https://github.com/nyr-github/ai-3d-learning
1•godsbee•38m ago•0 comments

Paragraf Unwraps Graphene-Based FET Made at New Graphene Foundry

https://www.allaboutcircuits.com/news/paragraf-unwraps-graphene-based-fet-made-at-new-graphene-fo...
1•WaitWaitWha•38m ago•0 comments

MCP Is Dead

https://www.quandri.io/engineering-blog/mcp-is-dead
35•nadis•40m ago•23 comments

The record divide between corporate profits and worker pay

https://www.wsj.com/finance/stocks/the-record-divide-between-corporate-profits-and-worker-pay-ea4...
3•hhs•41m ago•0 comments

Three Trends from MLSys 2026

https://www.modular.com/blog/three-trends-from-mlsys-2026
2•matt_d•43m ago•0 comments

Emacs Bra Size Calculator

https://pulusound.fi/blog/emacs-bra-size-calculator/
5•birdculture•44m ago•0 comments

Why Peter Thiel Is Decamping to Argentina

https://www.nytimes.com/2026/05/28/world/americas/peter-thiel-argentina.html
4•cft•45m ago•0 comments

Microsoft NetMeeting changed Windows forever [video]

https://www.youtube.com/watch?v=qhay6VryyvE
2•nazgulsenpai•46m ago•0 comments

YIMBY data projects, between naps

https://maxmautner.com/2026/05/17/three-yimby-projects.html
1•jez•47m ago•0 comments

CA's AB 1856 Exempts Open Source but Expands Age-Gating

https://www.eff.org/deeplinks/2026/05/one-step-forward-two-steps-back-cas-ab-1856-exempts-open-so...
3•hn_acker•48m ago•1 comments

Why the Physics Underlying Life Is Fundamental and Computation Is Not

https://longnow.org/ideas/physics-life-complexity-assembly-theory/
1•leephillips•50m ago•0 comments

Show HN: Free activity calendar for schools, sports clubs, and organizations

https://freecal.eu/?lang=en
3•glenn_vc•52m ago•2 comments