Skip to main content
Glama

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

NameRequiredDescriptionDefault

No arguments

Input Schema (JSON Schema)

{ "properties": {}, "required": [], "type": "object" }

Implementation Reference

  • 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); }, };
  • Input schema for the 'Help' tool (no arguments required).
    const helpArgsSchema = z.object({});
  • Registration of the 'Help' tool (and others) into the central toolRegistry.
    toolRegistry.push( askCodexTool, batchCodexTool, // reviewCodexTool, pingTool, helpTool, versionTool, brainstormTool, fetchChunkTool, timeoutTestTool );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cexll/codex-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server