@h1deya/langchain-mcp-tools - v0.2.8
    Preparing search index...

    Interface CommandBasedConfig

    Configuration for a command-line based MCP server. This is used for local MCP servers that are spawned as child processes.

    The transport and type fields are optional for command-based configs. They can be useful for explicitly specifying "stdio" transport or for compatibility with VSCode-style configurations.

    interface CommandBasedConfig {
        url?: undefined;
        transport?: string;
        type?: string;
        headers?: undefined;
        command: string;
        args?: string[];
        env?: Record<string, string>;
        stderr?: number | Stream | IOType;
        cwd?: string;
    }
    Index

    Properties

    url?: undefined
    transport?: string
    type?: string
    headers?: undefined
    command: string
    args?: string[]
    env?: Record<string, string>
    stderr?: number | Stream | IOType
    cwd?: string