Add Huntr as a tool inside your AI assistant. Once connected, ask Codex, Claude, or Cursor to research something — it calls Huntr, runs the query, and brings the answer back into the chat.
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonhntr_YOUR_KEY with your API key. Your dashboard has it pre-filled — grab it there.{
"mcpServers": {
"huntr": {
"type": "http",
"url": "https://api.tryhuntr.com/mcp",
"headers": { "x-api-key": "hntr_YOUR_KEY" }
}
}
}
"huntr" block inside the existing "mcpServers" object — don't duplicate the outer keys.hntr_YOUR_KEY with your API key. This adds Huntr globally — it'll be available in every Claude Code session.claude mcp add huntr --transport http https://api.tryhuntr.com/mcp \ -H "x-api-key: hntr_YOUR_KEY"
/mcp — huntr should show as connected. Then just ask Claude to research something..claude/settings.local.json — that only works inside that one project folder.~/.cursor/mcp.json.hntr_YOUR_KEY with your API key.{
"mcpServers": {
"huntr": {
"type": "http",
"url": "https://api.tryhuntr.com/mcp",
"headers": { "x-api-key": "hntr_YOUR_KEY" }
}
}
}
~/.codex/config.toml. In the Codex IDE extension, use Codex Settings → Open config.toml.hntr_YOUR_KEY with your API key. This connects Codex to Huntr over MCP.[mcp_servers.huntr]
url = "https://api.tryhuntr.com/mcp"
http_headers = { "x-api-key" = "hntr_YOUR_KEY" }
/mcp — huntr should show as connected. Then ask Codex to research something to confirm.