jezweb-mcp-core
Version:
Jezweb Model Context Protocol (MCP) Core - A universal server for providing AI tools and resources, designed for seamless integration with various AI models and clients. Features adaptable multi-provider support, comprehensive tool and resource management
11 lines • 826 B
TypeScript
/**
* Prompts Index - Centralized exports for all prompt-related functionality
*
* This module provides clean, tree-shakable exports for all prompt functionality
* including templates, registry, and utility functions.
*/
export * from './prompt-templates.js';
export * from './prompt-registry.js';
export { getAvailablePrompts, getPrompt, generatePromptMessages, hasPrompt, searchPrompts, getPromptsByCategory, getPromptRegistryStats, promptRegistry } from './prompt-registry.js';
export { getPromptTemplates, getPromptTemplate, getPromptTemplatesByCategory, CreateCodingAssistant, CreateDataAnalyst, CreateWritingAssistant, CreateConversationThread, OrganizeThreadMessages, ConfigureAssistantRun, DebugRunIssues, ReviewCode, ExplainCode, AnalyzeDataset } from './prompt-templates.js';
//# sourceMappingURL=index.d.ts.map