UNPKG

openai-assistants-mcp

Version:

OpenAI Assistants MCP Server - A Model Context Protocol server providing OpenAI Assistants API tools and resources. Features comprehensive assistant management, thread operations, message handling, and run execution with seamless stdio transport for Claud

11 lines 826 B
/** * 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