UNPKG

@rhofkens/mcp-quotes-server-claude-code

Version:

Model Context Protocol (MCP) server for managing and serving quotes

28 lines 1.08 kB
/** * MCP Quotes Server - Prompt Template Resource * * Provides structured templates for formatting quote requests * to ensure consistent interaction with the quote retrieval tool. * * Supports multiple template versions and variants for different use cases. */ import type { Resource } from '@modelcontextprotocol/sdk/types.js'; /** * Handler function for the prompt template resource * Returns structured templates based on the requested URI */ export declare function promptTemplateHandler(uri: string): Promise<string>; /** * Export all prompt template resources */ export declare const promptTemplateResources: import("zod").objectOutputType<{ uri: import("zod").ZodString; name: import("zod").ZodString; description: import("zod").ZodOptional<import("zod").ZodString>; mimeType: import("zod").ZodOptional<import("zod").ZodString>; }, import("zod").ZodTypeAny, "passthrough">[]; /** * Primary resource definition for backward compatibility */ export declare const promptTemplateResource: Resource; //# sourceMappingURL=promptTemplate.d.ts.map