Help
Access help information for using the Codex MCP Server's code analysis, editing, and execution capabilities through AI assistants.
Instructions
receive help information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"required": [],
"type": "object"
}
Implementation Reference
- src/tools/simple-tools.ts:26-37 (handler)Full implementation of the 'Help' tool, including its handler (execute function) that runs 'codex --help' command.export const helpTool: UnifiedTool = { name: 'Help', description: 'receive help information', zodSchema: helpArgsSchema, prompt: { description: 'receive help information', }, category: 'simple', execute: async (args, onProgress) => { return executeCommand('codex', ['--help'], onProgress); }, };
- src/tools/simple-tools.ts:24-25 (schema)Input schema for the 'Help' tool (no arguments required).const helpArgsSchema = z.object({});
- src/tools/index.ts:11-21 (registration)Registration of the 'Help' tool (and others) into the central toolRegistry.toolRegistry.push( askCodexTool, batchCodexTool, // reviewCodexTool, pingTool, helpTool, versionTool, brainstormTool, fetchChunkTool, timeoutTestTool );