agentic-openapi-parser
    Preparing search index...

    Interface SemanticTool

    The minimum shape SemanticToolIndex needs — satisfied by DynamicToolDefinition, but also by a tool object from any other source (an MCP server's tools/list, a hand-written tool, ...).

    interface SemanticTool {
        description: string;
        name: string;
        tags?: string[];
    }
    Index
    description: string
    name: string
    tags?: string[]