Documentation
    Preparing search index...

    Interface McpTool

    An MCP tool descriptor, as returned by tools/list.

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

    Properties

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