@backblaze-labs/b2-mcp
    Preparing search index...

    Interface RegisteredToolRecord

    Introspection record for a registered tool.

    interface RegisteredToolRecord {
        annotations: McpToolAnnotations;
        description?: string;
        execute: ToolCallback;
        inputSchema?: ZodObject<
            Readonly<
                {
                    [k: string]: $ZodType<
                        unknown,
                        unknown,
                        $ZodTypeInternals<unknown, unknown>,
                    >;
                },
            >,
            $strip,
        >;
        name: string;
    }
    Index
    annotations: McpToolAnnotations

    MCP tool annotations derived from the server capability map.

    description?: string

    Description passed to the MCP SDK.

    execute: ToolCallback

    Wrapped callback that the MCP SDK will invoke.

    inputSchema?: ZodObject<
        Readonly<
            {
                [k: string]: $ZodType<
                    unknown,
                    unknown,
                    $ZodTypeInternals<unknown, unknown>,
                >;
            },
        >,
        $strip,
    >

    Materialized Zod object schema for tests and contract generation.

    name: string

    Stable MCP tool name.