ART Framework API Docs
    Preparing search index...

    Interface McpToolDefinition

    Defines the schema for a tool provided by an MCP server.

    McpToolDefinition

    interface McpToolDefinition {
        description?: string;
        inputSchema: any;
        name: string;
        outputSchema?: any;
    }
    Index

    Properties

    description?: string

    A description of what the tool does.

    inputSchema: any

    The JSON schema for the tool's input.

    name: string

    The name of the tool.

    outputSchema?: any

    The JSON schema for the tool's output.