Bring Antimetal's software investigation intelligence into Claude Code and Cursor. Triage problems, investigate root causes, fetch observability artifacts, and apply remediations—all from your terminal.
/plugin marketplace add antimetal/skills
/plugin install antimetalMigrating from
antimetal/claude-plugin? Uninstall the old plugin first:/plugin uninstall antimetal /plugin marketplace remove antimetalThen run the install commands above.
Install from the Cursor Marketplace by searching for Antimetal, or:
/add-plugin antimetal/skills/investigate— Entry point for any software problem. Searches issues, queries Antimetal's AI, reads investigative reports and causal graphs, and routes to fix/fix— Apply Antimetal's remediation to your codebase, adapted for your local environment/antimetal-mcp-setup— Configure the MCP connection (OAuth or API key)
Connects to Antimetal's remote MCP server at https://mcp.antimetal.com, providing:
| Tool | Description |
|---|---|
search_issues |
Paginated list of issues with severity, status, and environment |
get_issue_report |
Full investigative report—root cause, timeline, causal graph |
get_issue_fixes |
Remediation steps (code changes, CLI commands, context) |
investigate_issue |
Create a new issue and start async automated investigation |
get_artifact |
Retrieve raw evidence: logs, traces, metrics, events, files, topology |
ask |
Ask Antimetal's AI about infrastructure, software, deployments, telemetry, logs, code |
When you first use an Antimetal tool or skill, Claude Code will open a browser window to log in to your Antimetal account via OAuth. Tokens are stored securely and refreshed automatically.
- Sign up at antimetal.com and generate an API key from API Keys Settings
- Set the environment variable:
export ANTIMETAL_API_KEY="your-api-key-here"
- Add this to your shell profile (
~/.zshrc,~/.bashrc, etc.) so it persists - Restart Cursor to pick up the environment variable
antimetal/skills/
├── .claude-plugin/ # Claude Code config
│ ├── marketplace.json
│ └── plugin.json
├── .cursor-plugin/ # Cursor config
│ └── plugin.json
├── skills/ # Agent skills
│ ├── antimetal-mcp-setup/
│ ├── investigate/
│ └── fix/
├── .mcp.json # Claude Code MCP config
├── mcp.json # Cursor MCP config
└── README.md