stdio
stdio client transport.
Runs an MCP server as a subprocess and exchanges newline-delimited JSON-RPC messages with it over stdin/stdout. Two pipe tasks bridge the server's pipes to the session's in-memory streams; shutdown follows the MCP spec sequence (close stdin, wait, then kill the process tree) inside a cancellation shield with every wait bounded, so a cancelled caller can neither leak a live server process nor hang on one.
get_default_environment
Returns only the environment variables that are safe to inherit.
Source code in src/mcp/client/stdio.py
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | |
StdioServerParameters
Bases: BaseModel
Source code in src/mcp/client/stdio.py
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 | |
args
class-attribute
instance-attribute
Command line arguments to pass to the executable.
env
class-attribute
instance-attribute
Extra environment variables, merged over get_default_environment().
cwd
class-attribute
instance-attribute
The working directory to use when spawning the process.
encoding
class-attribute
instance-attribute
encoding: str = 'utf-8'
Text encoding for messages to and from the server.
encoding_error_handler
class-attribute
instance-attribute
encoding_error_handler: Literal[
"strict", "ignore", "replace"
] = "strict"
Encoding error handler; see https://docs.python.org/3/library/codecs.html#error-handlers.
stdio_client
async
stdio_client(
server: StdioServerParameters, errlog: TextIO = stderr
) -> AsyncGenerator[TransportStreams, None]
Spawns an MCP server subprocess and connects to it over stdin/stdout.
Raises:
| Type | Description |
|---|---|
OSError
|
If the server process cannot be spawned. |
ValueError
|
If the spawn parameters are invalid (embedded NUL bytes). |
Source code in src/mcp/client/stdio.py
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | |