vapor-chamber API reference - v1.16.0
    Preparing search index...

    Type Alias McpTool

    An MCP tool definition, as returned by the tools/list method.

    type McpTool = {
        name: string;
        description?: string;
        inputSchema: {
            type: "object";
            properties: Record<string, any>;
            required?: string[];
        };
    }
    Index
    name: string
    description?: string
    inputSchema: {
        type: "object";
        properties: Record<string, any>;
        required?: string[];
    }