@squidcloud/backend
    Preparing search index...

    Interface McpToolMetadataOptions

    Options for the @mcpTool annotation.

    interface McpToolMetadataOptions {
        description: string;
        inputSchema: JSONSchema;
        outputSchema?: JSONSchema;
    }
    Index

    Properties

    description: string

    Describes the capabilities of the function. This is used by the AI agent to determine when to call it.

    inputSchema: JSONSchema

    Parameters for the MCP Tool.

    outputSchema?: JSONSchema

    (Optional) The tool output schema.