Ask HN: What's the Point of MCP?

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?

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/wasteful compared to piping data between processes).

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.

I'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've thought of:

- 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're writing an OS for the LLM to live inside.

5 points | by tomelliot 23 hours ago

4 comments

  • jngiam1 19 hours ago
    I think getting the LLM to write code is the right way as well. MCP is a simpler/opinionated version of the python lib/APIs.
    • tomelliot 4 hours ago
      Yeah that seems to be how it is today. I'm just curious if there's something I'm missing with MCP, or if they want to make some changes down the road that will improve it in this way.
  • uncomplexity_ 14 hours ago
    mcp is best for stateful connections to thirtparty providers of data and actions.

    shameless plug but im working on something where i give LLMs direct access to APIs without going through mcp.

    initial demo is at uncomplexities.com.

    • tomelliot 4 hours ago
      Mm I hadn't thought about the stateful part - so the server is running the whole time the MCP client is active? Rather than being spun up as needed to make a tool call?
  • owebmaster 17 hours 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.
    • x86hacker1010 54 minutes ago
      Glad I’m not alone here. Seemed easier to orchestrate some delegation logic my own
    • tomelliot 4 hours ago
      Yeah definitely an ecosystem play