TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What's the Point of MCP?

6 pointsby tomelliotabout 2 months ago
I’ve been messing around with MCP servers to get a feel for the ecosystem. I’m seeing a real issue, and I’m not sure what solutions are possible with the architecture - am I missing something?<p>The LLM always sits in the middle of any pipeline. That means you’ll always have potentially messy and lossy translation in between every tool call (not to mention incredibly slow&#x2F;wasteful compared to piping data between processes).<p>The example I was using: I wanted Claude to orchestrate some analysis on Stripe data for me. I asked it to get all transactions from last month and write them to disk (as a step one, before actually doing anything). Because the data coming out of Stripe goes back through the LLM before going to disk, it completely borked it and wrote only a small fraction of the data.<p>I&#x27;m trying to piece together the puzzle that lets a chatbot do useful things for me in my life. Is there a future-state where this issue isn’t an inherent problem? Some workarounds I&#x27;ve thought of:<p>- have a python interpreter and have the LLM write code. But then what’s the point of an MCP server when you’d just use the Stripe python library or APIs? - have some kind of inter-MCP-server communication protocol At this point we&#x27;re writing an OS for the LLM to live inside.

3 comments

owebmasterabout 1 month ago
MCP is an abstraction like LangChain: useless. Just companies trying to create the next big standard so they can have everyone hooked and later they change for something proprietary.
评论 #43581903 未加载
评论 #43579993 未加载
jngiam1about 2 months ago
I think getting the LLM to write code is the right way as well. MCP is a simpler&#x2F;opinionated version of the python lib&#x2F;APIs.
评论 #43579990 未加载
uncomplexity_about 1 month ago
mcp is best for stateful connections to thirtparty providers of data and actions.<p>shameless plug but im working on something where i give LLMs direct access to APIs without going through mcp.<p>initial demo is at uncomplexities.com.
评论 #43579996 未加载