import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { z } from "zod"; export interface PromptSpec { name: string; title: string; description: string; argsSchema?: Record>; /** Build the plan text from the (optional) arguments. */ plan: (args: Record) => string; } /** Every prompt this server offers, in listing order. */ export declare const PROMPTS: PromptSpec[]; /** Register every prompt. Returns the names registered, in order. */ export declare function registerPrompts(server: McpServer): string[];