UNPKG

codex-cli-architect-mcp

Version:

MCP server for OpenAI Codex CLI - Enable AI-powered coding assistance through Model Context Protocol

18 lines 434 B
import type { z } from 'zod'; export interface ToolDefinition<T = unknown> { name: string; description: string; schema: z.ZodSchema<T>; execute: (args: T) => Promise<string>; } export interface CodexExecutionOptions { model?: string; timeout?: number; } export interface CodexResponse { success: boolean; output?: string; error?: string; exitCode?: number; } //# sourceMappingURL=index.d.ts.map