/** * Open Ephemeris MCP — Preloaded Prompt Library * * Each prompt is a complete agent workflow that: * 1. Coaches the agent to collect all required data from the user * 2. Handles timezone, coordinate, and house-system nuances correctly * 3. Specifies which tools to call and in what order * 4. Provides a structured interpretation framework */ export interface McpPrompt { name: string; description: string; text: string; } export declare const PROMPTS: McpPrompt[]; /** * Returns the list of all prompts (name + description only, for ListPrompts). */ export declare function listPrompts(): Array<{ name: string; description: string; }>; /** * Returns the full prompt content for a given prompt name, or null if not found. */ export declare function getPromptContent(name: string): McpPrompt | null;