stdio
get_default_environment
Returns a default environment object including only environment variables deemed safe to inherit.
Source code in src/mcp/client/stdio.py
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 | |
StdioServerParameters
Bases: BaseModel
Source code in src/mcp/client/stdio.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 | |
args
class-attribute
instance-attribute
Command line arguments to pass to the executable.
env
class-attribute
instance-attribute
The environment to use when spawning the process.
If not specified, the result of get_default_environment() will be used.
cwd
class-attribute
instance-attribute
The working directory to use when spawning the process.
encoding
class-attribute
instance-attribute
encoding: str = 'utf-8'
The text encoding used when sending/receiving messages to the server.
Defaults to utf-8.
encoding_error_handler
class-attribute
instance-attribute
encoding_error_handler: Literal[
"strict", "ignore", "replace"
] = "strict"
The text encoding error handler.
See https://docs.python.org/3/library/codecs.html#codec-base-classes for explanations of possible values.
stdio_client
async
stdio_client(
server: StdioServerParameters, errlog: TextIO = stderr
)
Client transport for stdio: this will connect to a server by spawning a process and communicating with it over stdin/stdout.
Source code in src/mcp/client/stdio.py
104 105 106 107 108 109 110 111 112 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 | |