An MCP server that provides enriched blockchain data from Codex. This server can be used with any MCP-compatible client like Claude Desktop. To use the MCP Codex Server, you need to have a Codex API key. You can get your key from the Codex Dashboard. You can run the MCP Codex Server directly without installation using npx: Start the server using stdio (for embedding in CLI tools): For development
Add this skill
npx mdskills install Codex-Data/codex-mcpWell-documented setup and integration but lacks any description of actual blockchain tools provided
1# Codex MCP Server23An [MCP](https://modelcontextprotocol.org/) server that provides enriched blockchain data from [Codex](https://codex.io). This server can be used with any MCP-compatible client like [Claude Desktop](https://www.anthropic.com/news/claude-desktop).45## Installation67```bash8# Clone the repository9git clone https://github.com/codex-data/codex-mcp.git10cd codex-mcp1112# Install dependencies13pnpm install1415# Build the project16pnpm build17```1819## Usage2021To use the MCP Codex Server, you need to have a Codex API key. You can get your key from the [Codex Dashboard](https://dashboard.codex.io).2223### Using npx (No Installation Required)2425You can run the MCP Codex Server directly without installation using npx:2627```bash28# Run the server in stdio mode (for CLI tools)29npx @codex-data/codex-mcp30```3132### Running the Server Locally3334Start the server using stdio (for embedding in CLI tools):3536```bash37pnpm start38```3940For development with auto-reload:4142```bash43pnpm dev44```4546### Integration with Claude Desktop47481. Open Claude Desktop settings492. Go to the Developer tab and click "Edit Config"503. Add a new server configuration:5152No installation:5354```json55{56 "mcpServers": {57 "codex-data": {58 "command": "npx",59 "args": ["-y", "@codex-data/codex-mcp"],60 "env": {61 "CODEX_API_KEY": "<your-codex-api-key>"62 }63 }64 }65}66```6768Local installation:6970```json71{72 "mcpServers": {73 "codex-data": {74 "command": "node",75 "args": ["/path/to/codex-mcp/build/index.js"],76 "env": {77 "CODEX_API_KEY": "<your-codex-api-key>"78 }79 }80 }81}82```83844. Replace `/path/to/codex-mcp` with the actual path to your installation855. Replace `<your-codex-api-key>` with your actual Codex API key8687### Connecting using Claude CLI8889If you're using Claude CLI:9091```bash92# Add the MCP server93claude mcp add codex-data -e CODEX_API_KEY=<your-codex-api-key> npx @codex-data/codex-mcp9495# Start Claude with the MCP server enabled96claude97```9899## License100101ISC102
Full transparency — inspect the skill content before installing.