Graphorin API reference v0.1.0
Graphorin API reference / @graphorin/mcp / / StdioTransportConfig
Interface: StdioTransportConfig
Defined in: packages/mcp/src/transport/types.ts:30
Options for the 'stdio' transport.
Properties
| Property | Modifier | Type | Description | Defined in |
|---|---|---|---|---|
args? | readonly | readonly string[] | - | packages/mcp/src/transport/types.ts:33 |
command | readonly | string | - | packages/mcp/src/transport/types.ts:32 |
cwd? | readonly | string | - | packages/mcp/src/transport/types.ts:35 |
env? | readonly | Readonly<Record<string, string>> | - | packages/mcp/src/transport/types.ts:34 |
kind | readonly | "stdio" | - | packages/mcp/src/transport/types.ts:31 |
stderr? | readonly | "inherit" | "pipe" | "ignore" | How to handle the spawned child's stderr stream. Defaults to 'inherit' so operator-supplied servers print diagnostics to the host process's stderr; 'pipe' collects stderr into the transport for in-process logging; 'ignore' discards it. | packages/mcp/src/transport/types.ts:42 |