CodeIndex
← Back to Resources

How to set up the CIDX MCP on BoltAI

Use this guide to add CIDX MCP support to your BoltAI workflow.

Last Updated: May 13, 2025

  1. Open BoltAI settings

    Navigate to the Settings page and find the MCP configuration section.

  2. Insert the configuration snippet

    Add the following configuration to your BoltAI settings:

    {
      "mcpServers": {
        "cidx-mcp": {
          "command": "npx",
          "args": [
            "cidx@latest"
          ]
        }
      }
    }

    Adding to existing configuration

    If you already have other MCP servers configured, only add this part inside your mcpServers object:

      "cidx-mcp": {
        "command": "npx",
        "args": [
          "cidx@latest"
        ]
      }

    Example with another server:

    {
      "mcpServers": {
        "cidx-mcp": {
          "command": "npx",
          "args": ["cidx@latest"]
        },
        "dummy-server": {
          "command": "dummy",
          "args": ["--mcp"]
        }
      }
    }
  3. Reload BoltAI

    After saving the configuration, restart BoltAI to apply the changes.

Try it out!

Once configured, you can use CIDX MCP in your prompts by mentioning "mcp" or directly referencing "code index".

For more help, visit our Resources page.