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

24 lines 743 B
/** * NPM Package-specific MCP Handler * * This class extends the shared BaseMCPHandler and adds NPM package-specific * optimizations and transport handling. It maintains all the functionality of the * original handler while eliminating code duplication. */ export class MCPHandler extends BaseMCPHandler { constructor(apiKey: any); /** * Get registry statistics (for debugging and monitoring) */ getStats(): { totalHandlers: number; handlersByCategory: {}; registeredTools: any[]; }; /** * Check if handler is initialized */ isInitialized(): boolean; } import { BaseMCPHandler } from "../../shared/core/base-mcp-handler.cjs"; //# sourceMappingURL=mcp-handler.d.cts.map