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
23 lines • 628 B
text/typescript
/**
* CommonJS version of Prompt Handlers for NPM package compatibility
*
* This file provides CommonJS-compatible versions of the prompt handlers
* that can be used by the NPM package while maintaining the same functionality
* as the TypeScript version.
*/
/**
* Create prompt handlers
*/
export function createPromptHandlers(context: any): {
'prompts/list': {
context: any;
handle(params: any): Promise<{
prompts: never[];
}>;
};
'prompts/get': {
context: any;
handle(params: any): Promise<never>;
};
};
//# sourceMappingURL=prompt-handlers.d.cts.map