|
|
|
|
|
by _pdp_
460 days ago
|
|
The MCP protocol is really not that good. The stateful nature of it makes it only suitable as a local desktop RPC pipe - certainly not something that will work well on mobile nor anything anyone would like to try to run maintain in a server-to-serve context. It is fine if that is the scope. It is also understandable why Anthropic chose to use a stateful protocol where stateless HTTP would be more than enough. They are catering for the default transport layer which is stdio based where state needs to be established. There are also other aspects of it that are simply unnecessarily complex and resource intensive for no good reasons. |
|