Skip to main content
Huntr exposes an HTTP MCP server at https://api.tryhuntr.com/mcp. Once connected, your AI assistant gets the full Huntr API as tools — research, list building, enrichment, and page operations — not just /research.

All MCP tools

Every paid REST endpoint (except signup webhooks) is available as an MCP tool:
MCP toolREST equivalentWhat it does
researchPOST /researchAgent-led research — account briefs, buyer research, structured answers
company_searchPOST /company-searchBuild company lists with structured filters
company_search_countPOST /company-search-countPreview list size (free)
person_searchPOST /person-searchFind people by title, employer, skills, location
person_search_countPOST /person-search-countPreview people match count (free)
person_emailPOST /person-emailFind a work email for one person
person_linkedinPOST /person-linkedinFull LinkedIn profile from URL
person_linkedin_urlPOST /person-linkedin-urlResolve LinkedIn profile URL from name + company
linkedin_companyPOST /company-linkedinCompany profile from LinkedIn URL
company_linkedin_urlPOST /company-linkedin-urlResolve LinkedIn company URL from domain
tech_stackPOST /company-tech-stackDetect technologies on a domain
company_contactPOST /company-contactEmails, phones, socials from company website
job_postingsPOST /company-jobsActive job listings
find_pagesPOST /page-findDiscover relevant URLs on a domain
page_scrapePOST /page-scrapeScrape structured content from one URL
page_analyzePOST /page-analyzeLLM analysis of one page
get_pricingGET /pricingFull pricing matrix (no charge)
get_balanceGET /balanceRemaining credits (no charge)
get_usageGET /usageRecent request history (no charge)
Agents should call direct tools (person_email, company_search, tech_stack, …) for known lookups. Use research only when the task needs cross-source synthesis on one target.

Cursor

  1. Open Cursor → Settings → MCP → Add new global MCP server (edits ~/.cursor/mcp.json)
  2. Add:
{
  "mcpServers": {
    "huntr": {
      "type": "http",
      "url": "https://api.tryhuntr.com/mcp",
      "headers": { "x-api-key": "hntr_YOUR_KEY" }
    }
  }
}
  1. Restart Cursor. Use Agent mode.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
  "mcpServers": {
    "huntr": {
      "type": "http",
      "url": "https://api.tryhuntr.com/mcp",
      "headers": { "x-api-key": "hntr_YOUR_KEY" }
    }
  }
}
Restart Claude Desktop.

Claude Code (CLI)

claude mcp add huntr --transport http https://api.tryhuntr.com/mcp \
  -H "x-api-key: hntr_YOUR_KEY"
Run /mcp in a session to verify connection.

Codex

Add to ~/.codex/config.toml:
[mcp_servers.huntr]
url = "https://api.tryhuntr.com/mcp"

[mcp_servers.huntr.headers]
x-api-key = "hntr_YOUR_KEY"

Example prompts

Research (one target)
  • “Use Huntr to research Notion’s enterprise motion and who owns security buying decisions.”
Search + enrich (multi-step)
  • “Search for VP Engineering contacts at linear.app, then find a work email for the best match.”
  • “Preview how many US SaaS companies have 50–200 employees, then fetch the first page.”
Direct enrichment
  • “Get stripe.com’s tech stack and open job postings using Huntr.”
  • “Scrape https://linear.app/pricing and summarize the pricing tiers.”
Meta
  • “What’s my Huntr balance and the price of a standard research request?”

Tips

  • Call get_pricing before paid tools so the agent picks the right tier and knows costs.
  • For bulk lists, chain company_search_countcompany_searchperson_searchperson_email — do not loop research.
  • Get your API key from the dashboard.

Next step