Help
Get help information about using the Codex MCP Server to connect AI assistants to CLI tools for code analysis, editing, and execution.
Instructions
receive help information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/simple-tools.ts:34-36 (handler)The execute function of the Help tool, which invokes the 'codex --help' command via executeCommand.
execute: async (args, onProgress) => { return executeCommand('codex', ['--help'], onProgress); }, - src/tools/simple-tools.ts:24-24 (schema)Zod schema definition for the Help tool, which takes no arguments.
const helpArgsSchema = z.object({}); - src/tools/index.ts:11-21 (registration)Registration of the Help tool (along with others) into the global toolRegistry array.
toolRegistry.push( askCodexTool, batchCodexTool, // reviewCodexTool, pingTool, helpTool, versionTool, brainstormTool, fetchChunkTool, timeoutTestTool );