Skip to content
Last updated

Use the Evaboot MCP server to access the API from AI assistants like Claude, Cursor, and other MCP-compatible clients.

Prerequisites

  1. An Evaboot API token — get one at app.evaboot.com
  2. uv — a fast Python package runner. Install it:
    • macOS/Linux: curl -LsSf https://astral.sh/uv/install.sh | sh
    • Windows: powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
    • Or see docs.astral.sh/uv for other methods

No other installation is needed. uvx downloads and runs the server automatically.

Setup

Add the following to your MCP client config file:

{
  "mcpServers": {
    "evaboot": {
      "command": "uvx",
      "args": ["evaboot-mcp"],
      "env": {
        "EVABOOT_API_KEY": "your-api-token"
      }
    }
  }
}

Config file locations

ClientConfig file
Claude Desktop (macOS)~/Library/Application Support/Claude/claude_desktop_config.json
Claude Desktop (Windows)%APPDATA%\Claude\claude_desktop_config.json
Claude CodeRun: claude mcp add evaboot -- uvx evaboot-mcp
Cursor.cursor/mcp.json in your project
VS Code (Copilot).vscode/mcp.json in your project
Windsurf~/.codeium/windsurf/mcp_config.json

After adding the config, restart the client.

Available tools

Search Builder

  • generate_search_url — Describe the leads or companies you want and get a Sales Navigator search URL.

Email Finder

  • find_email — Find a professional email for one person (1 credit).
  • find_emails_bulk — Start a bulk email finder job (1 credit/prospect).
  • list_email_finder_jobs — List your email finder jobs.
  • get_email_finder_job — Get job results by ID.

Email Validation

  • validate_email — Validate one email address (0.5 credits).
  • validate_emails_bulk — Start a bulk validation job (0.5 credits/email).
  • list_email_validation_jobs — List your validation jobs.
  • get_email_validation_job — Get job results by ID.

LinkedIn Extraction

  • extract_from_url — Start extraction from a Sales Navigator URL.
  • extract_profiles — Start extraction for specific profile URLs/IDs.
  • extract_single_profile — Extract a single profile.
  • list_extractions — List your extractions.
  • get_extraction — Get extraction results by ID.

Account

  • check_quota — Check your credits and daily limits.

Example

"Find me VPs of Sales at fintech companies in the UK with 50-200 employees, then start an extraction"

The assistant will call generate_search_url to build the URL, then extract_from_url to run it.