UNPKG

breathe-api

Version:

Model Context Protocol server for Breathe HR APIs with Swagger/OpenAPI support - also works with custom APIs

15 lines 795 B
import { ListPromptsRequest, ListPromptsResult, GetPromptRequest, GetPromptResult, Prompt } from '@modelcontextprotocol/sdk/types.js'; export declare function handleListPrompts(_request: ListPromptsRequest): Promise<ListPromptsResult>; export declare function handleGetPrompt(request: GetPromptRequest): Promise<GetPromptResult>; export declare function getPromptCategories(): Record<string, Prompt[]>; export declare function searchPrompts(query: string): Prompt[]; export declare function getPromptSuggestions(context: { recentTools?: string[]; lastError?: string; platform?: string; }): Prompt[]; export declare function validatePromptArguments(promptName: string, args: Record<string, string>): { valid: boolean; errors: string[]; }; //# sourceMappingURL=handler.d.ts.map