> ## Documentation Index
> Fetch the complete documentation index at: https://docs.antimetal.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP

> Connect to Antimetal's MCP server from your AI tools

Antimetal exposes a remote MCP server at `https://mcp.antimetal.com` that any MCP-compatible client can connect to. This gives your AI tools direct access to Antimetal's investigation, root cause analysis, and remediation capabilities.

<Note>
  Before connecting, make sure you've [set up your integrations](/integrations/overview) so Antimetal has access to your infrastructure and observability data.
</Note>

<Note>
  For Claude Code and Cursor, install the [Antimetal Skills plugin](/product/skills) instead — it bundles the MCP server with pre-built investigation and fix workflows.
</Note>

For other clients, add the server using the configuration below. All of these clients support OAuth for remote MCP and will prompt you to log in on first use. You can also generate an API key from the [Antimetal dashboard](https://overlook.antimetal.com/settings/api-keys) and use it as a bearer token if you prefer.

<Tabs>
  <Tab title="VS Code">
    Add the following to your VS Code settings (`settings.json`):

    ```json theme={null}
    {
      "mcp": {
        "inputs": [
          {
            "type": "promptString",
            "id": "antimetal-api-key",
            "description": "Antimetal API Key",
            "password": true
          }
        ],
        "servers": {
          "antimetal": {
            "type": "http",
            "url": "https://mcp.antimetal.com",
            "headers": {
              "Authorization": "Bearer ${input:antimetal-api-key}"
            }
          }
        }
      }
    }
    ```
  </Tab>

  <Tab title="Claude Desktop">
    Add the following to your Claude Desktop config:

    * macOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
    * Windows: `%APPDATA%\Claude\claude_desktop_config.json`

    ```json theme={null}
    {
      "mcpServers": {
        "antimetal": {
          "type": "http",
          "url": "https://mcp.antimetal.com",
          "headers": {
            "Authorization": "Bearer YOUR_ANTIMETAL_API_KEY"
          }
        }
      }
    }
    ```

    Replace `YOUR_ANTIMETAL_API_KEY` with your actual API key.
  </Tab>

  <Tab title="Windsurf">
    Add the following to your Windsurf MCP config (`~/.codeium/windsurf/mcp_config.json`):

    ```json theme={null}
    {
      "mcpServers": {
        "antimetal": {
          "type": "http",
          "url": "https://mcp.antimetal.com",
          "headers": {
            "Authorization": "Bearer YOUR_ANTIMETAL_API_KEY"
          }
        }
      }
    }
    ```
  </Tab>

  <Tab title="Codex">
    ```bash theme={null}
    codex mcp add antimetal --transport http https://mcp.antimetal.com -- --header "Authorization: Bearer $ANTIMETAL_API_KEY"
    ```
  </Tab>
</Tabs>

<Snippet file="need-help.mdx" />
