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.
VS Code
Claude Desktop
Windsurf
Codex
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}"
}
}
}
}
}
Add the following to your Claude Desktop config:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"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. Add the following to your Windsurf MCP config (~/.codeium/windsurf/mcp_config.json):{
"mcpServers": {
"antimetal": {
"type": "http",
"url": "https://mcp.antimetal.com",
"headers": {
"Authorization": "Bearer YOUR_ANTIMETAL_API_KEY"
}
}
}
}
codex mcp add antimetal --transport http https://mcp.antimetal.com -- --header "Authorization: Bearer $ANTIMETAL_API_KEY"