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 • 422 B
JavaScript
/**
* Services Index - Centralized exports for all shared services
*
* This module provides clean, tree-shakable exports for all shared services.
* Enables both deployments to import services using @shared/services.
*/
// Export all services
export * from './openai-service.js';
// Re-export commonly used services for convenience
export { OpenAIService } from './openai-service.js';
//# sourceMappingURL=index.js.map