gustavorobertux/codex_mcp_server_ebka
If you are the rightful owner of codex_mcp_server_ebka and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The Codex MCP Server for Ebka Caido Plugin is a specialized server setup that allows seamless interaction between Codex CLI and the Ebka Caido plugin, facilitating advanced plugin management and operations.
Codex MCP Server for Ebka Caido Plugin
This folder mirrors the original Claude MCP server, but is packaged and documented specifically for the Codex CLI so you can talk to the Ebka Caido plugin from Codex sessions.
Requirements
- Node.js 16+
- Access to the Caido instance that has the Ebka plugin installed
Install & Build
cd codex-mcp-server
npm install
npm run build
Registering the server with Codex
- Open the Codex configuration file:
- Linux/macOS:
code ~/.codex/config.toml - Windows (PowerShell):
code $env:USERPROFILE\\.codex\\config.toml
- Linux/macOS:
- Add a new MCP server entry that points to the compiled script:
[mcp_servers.caido]
command = "node"
args = ["/absolute/path/to/codex-mcp-server/build/index.js"]
Replace the path above with your real build directory. When running Codex, this server will now be available alongside any other MCP integrations you have configured.
Using from Codex
- Start a Codex session (e.g.
codexfrom your terminal inside the Caido project). - Ask Codex to connect to the
caidoMCP server. - Immediately call the
sendAuthTokentool with theauth_tokenandapi_endpointcopied from the Ebka plugin inside Caido. This primes the server with credentials. - After authentication, any of the remaining Ebka tools (HTTPQL queries, replay management, findings, etc.) can be invoked directly from Codex.
The implementation inside src/ is identical to the Claude version to keep parity with future plugin changes—only packaging and docs differ so Codex users have a dedicated entry point.