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

17 lines 461 B
/** * Cloudflare-specific Types * * This module contains types specific to the Cloudflare Workers deployment. * Consolidates 5 lines of Cloudflare-specific type definitions. */ export interface Env { OPENAI_API_KEY: string; SERVER_NAME?: string; SERVER_VERSION?: string; DEBUG?: string; ENVIRONMENT?: string; NODE_ENV?: string; LOG_LEVEL?: string; DEPLOYMENT_REGION?: string; } //# sourceMappingURL=cloudflare-types.d.ts.map