rco8786
7 hours ago
> With the 2026-07-28 release, a remote MCP server is now no different from any other HTTP workload
Good. Introducing a bespoke new protocol was one of the more bone-headed things MCP did on initial release.
colingauvin
6 hours ago
It's unreal how bad the initial rollout was between HTTP/streaming and stdio, bearer auth and OAuth. Virtually every client/MCP server pair had a different portion of that matrix implemented.
nprateem
3 hours ago
The real disaster was making it stateful. Need to get some adults in the room.
ihuman
5 hours ago
Is stdio being deprecated? I couldn't tell from this page
amluto
5 hours ago
The prose on the page is very unclear. My best interpretation is that they want to continue supporting stdio but that they don’t want it to be its own special protocol. The obvious way to do that would be to speak ordinary HTTP (version 1.1? 2?) over stdio and to use the MCP-over-HTTP protocol over the resulting HTTP transport.
This would be more complex to implement for a simple server, but it’s not exactly difficult.
Gormo
5 hours ago
Not everyone is on board with the idea of HTTP being the exclusive universal IPC bus.
amluto
4 hours ago
I’m not really a fan. But if you’re building a protocol that needs to map to HTTP anyway, then maybe using the HTTP binding everywhere is not totally awful.
In the flip side: I’m currently designing an AI-adjacent protocol, and it will be able to map to WebTransport, but I don’t plan to define non-WebTransport HTTP bindings unless a very compelling reason appears. The main implementations will not use HTTP at all :)
ranger_danger
3 hours ago
> if you’re building a protocol that needs to map to HTTP anyway
I don't think there is any guarantee that HTTP will always be involved. For example I might be calling a local LLM via CLI/script on a server with a stdio MCP connector that just runs other CLI commands, and never sends any HTTP traffic.
amluto
2 hours ago
Right. But there is a lot of real-world usage of MCP-over-HTTP-over-the-Internet, and a lot of “harnesses” want to support that use case, so they’re stuck either implementing the HTTP-based protocol or using a shim.
pstuart
4 hours ago
Would you prefer gRPC, thrift, avro, etc... ?
amluto
4 hours ago
Those are mostly at a different layer. You can speak Thrift or Avro or Protobuf over stdio or HTTP or TCP or carrier pigeon.
gRPC spans layers, and it uses HTTP in a more intrusive way than even MCP does — it expects to own the entire URL space at the IP/port in question. Using gRPC in a nontrivial way for MCP would be fairly heavy-weight: you would probably need to set up reflection and figure out how to bind all the MCP calls to it unless you just use it as a tunnel.
arccy
3 hours ago
grpc mcp is a thing... https://cloud.google.com/blog/products/networking/grpc-as-a-...
amluto
2 hours ago
Wow, that looks like a huge mess.
jcmfernandes
4 hours ago
I would prefer a core transport agnostic protocol, and then see MCP-over-HTTP being a spec on top of that.
intrasight
4 hours ago
Count me as not on board