Documentation

Connect your MCP client to Coducky

Upgrade your MCP-compatible client with Coducky superpowers. After setting up the MCP, you can ask your agent to run a review directly in Coducky.

Why MCP?

Coducky already supports launching reviews from the UI using your coding agents. But sometimes you might want to kick off a review without switching contexts or clicking buttons.

The Coducky MCP server gives your client the power to start a review and append findings directly to the Coducky app interface. Once it's done, you can observe the review inside the Coducky UI and copy out any feedback you want to send back to your coding agent.

Getting started

You'll need to first download and install Coducky.

Start Coducky once to let it set up the MCP helper command, then turn on Enable MCP server in Settings > MCP.

Client configs

For JSON client configs. Use the absolute helper path as command, with no args. Make sure to replace <username> with your macOS username.

Claude Code / Claude CLI

Start Coducky once so it can install the helper command, then add it to Claude Code.

claude mcp add coducky -- "$HOME/Library/Application Support/com.coducky.app/bin/coducky-mcp"
Manual configuration

Add this server entry to Claude Code / Claude CLI's MCP config, then restart the client.

{
  "command": "/Users/<username>/Library/Application Support/com.coducky.app/bin/coducky-mcp",
  "args": []
}

Claude Desktop

Place the entry under the desktop client's mcpServers object.

  1. Open the app and navigate to Settings > Developer > Edit Config
  2. Open the config in a text editor, such as VS Code
  3. Paste the following as a new key, below "Preferences":
    "mcpServers": {
      "coducky": {
        "command": "/Users/<username>/Library/Application Support/com.coducky.app/bin/coducky-mcp",
        "args": []
      }
    }
  4. Restart Claude Desktop

Codex CLI

Start Coducky once so it can install the helper command, then add it to Codex.

codex mcp add coducky -- "$HOME/Library/Application Support/com.coducky.app/bin/coducky-mcp"
Manual configuration

Add this server entry to Codex CLI's MCP config, then restart the client.

[mcp_servers.coducky]
command = "/Users/<username>/Library/Application Support/com.coducky.app/bin/coducky-mcp"
args = []

Codex Desktop

Add Coducky as a custom stdio MCP server in the desktop app.

  1. Navigate to Settings > MCP Servers and add a custom MCP server
  2. Select STDIO
  3. Add Coducky as the name
  4. Put this path in Command to launch, replacing <username> with your macOS username:
    /Users/<username>/Library/Application Support/com.coducky.app/bin/coducky-mcp
Codex Desktop MCP server settings with Coducky configured as a custom STDIO server.

Antigravity

Add Coducky to the shared Antigravity MCP server configuration.

  1. Open the MCP store via the '...' dropdown at the top of the editor's agent panel
  2. Click on 'Manage MCP Servers'
  3. Click on 'View raw config'
  4. Modify the mcp_config.json file with the following configuration:
    {
      "mcpServers": {
        "coducky": {
          "command": "/Users/<username>/Library/Application Support/com.coducky.app/bin/coducky-mcp",
          "args": []
        }
      }
    }

Cursor

Configure Coducky as a local stdio server by editing Cursor's MCP configuration file.

  1. Open your global configuration file (`~/.cursor/mcp.json`) or a project-specific file (`.cursor/mcp.json` in your project root)
  2. Paste the following entry inside the root object (merge with existing mcpServers if present):
    {
      "mcpServers": {
        "coducky": {
          "command": "/Users/<username>/Library/Application Support/com.coducky.app/bin/coducky-mcp",
          "args": []
        }
      }
    }
  3. Save the file, and Cursor will automatically reload the configuration

VS Code / Copilot

Use the installed helper command in the editor MCP server entry.

Add this server entry to VS Code / Copilot's MCP config, then restart the client.

{
  "command": "/Users/<username>/Library/Application Support/com.coducky.app/bin/coducky-mcp",
  "args": []
}

OpenCode

Configure Coducky as a local stdio server by editing OpenCode's configuration file.

Add this server entry to OpenCode's MCP config, then restart the client.

{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "coducky": {
      "type": "local",
      "command": [
        "/Users/<username>/Library/Application Support/com.coducky.app/bin/coducky-mcp"
      ],
      "enabled": true
    }
  }
}