MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

C
Codex MCP Server Ebka

MCP server by gustavorobertux

Created 11/17/2025
Updated 28 days ago
Repository documentation and setup instructions

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

  1. Open the Codex configuration file:
    • Linux/macOS: code ~/.codex/config.toml
    • Windows (PowerShell): code $env:USERPROFILE\\.codex\\config.toml
  2. 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

  1. Start a Codex session (e.g. codex from your terminal inside the Caido project).
  2. Ask Codex to connect to the caido MCP server.
  3. Immediately call the sendAuthToken tool with the auth_token and api_endpoint copied from the Ebka plugin inside Caido. This primes the server with credentials.
  4. 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.

Quick Setup
Installation guide for this server

Install Package (if required)

npx @modelcontextprotocol/server-codex_mcp_server_ebka

Cursor configuration (mcp.json)

{ "mcpServers": { "gustavorobertux-codex-mcp-server-ebka": { "command": "npx", "args": [ "gustavorobertux-codex-mcp-server-ebka" ] } } }