Skip to main content

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.

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.
Before connecting, make sure you’ve set up your integrations so Antimetal has access to your infrastructure and observability data.
For Claude Code and Cursor, install the Antimetal Skills plugin instead — it bundles the MCP server with pre-built investigation and fix workflows.
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 and use it as a bearer token if you prefer.
Add the following to your VS Code settings (settings.json):
{
  "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}"
        }
      }
    }
  }
}