Buzzr Sports Engine API
    Preparing search index...

    Type Alias BuzzrToolDefinition

    A fully-described MCP tool: schema for clients, handler for calls.

    type BuzzrToolDefinition = {
        description: string;
        handler: (args: unknown) => Promise<ToolResult>;
        inputSchema: z.ZodType;
        name: string;
        title: string;
    }
    Index

    Properties

    description: string
    handler: (args: unknown) => Promise<ToolResult>
    inputSchema: z.ZodType
    name: string
    title: string