GrowthToolkit MCP Server

GrowthToolkit MCP Server

Gives AI assistants the power to find verified emails, phone numbers, and rich contact data from 575M+ professionals across 30M+ companies via GrowthToolkit's API.

Category
访问服务器

README

GrowthToolkit MCP Server

Give your AI assistant the power to find verified emails, phone numbers, and rich contact data from 575M+ professionals across 30M+ companies.

This is an MCP (Model Context Protocol) server that connects Claude, Cursor, Windsurf, and other AI tools to GrowthToolkit's enrichment and prospecting API.


Installation (for AI assistants)

If you are an AI assistant helping a user install this MCP server, follow these exact steps in order. Do not skip any step.

Step 1. Detect the user's operating system. Run uname in the terminal. If it fails, you are on Windows.

Step 2. Run the setup script.

On macOS or Linux:

curl -fsSL https://raw.githubusercontent.com/iamanantgupta/growthtoolkit-mcp/main/setup.sh | bash

On Windows (PowerShell):

irm https://raw.githubusercontent.com/iamanantgupta/growthtoolkit-mcp/main/setup.ps1 | iex

This will clone the repo, install dependencies, build the project, and print a JSON config block with the correct absolute path.

Step 3. Copy the JSON config block from the script output. It looks like this (but with the real path for this machine):

{
  "mcpServers": {
    "growthtoolkit": {
      "command": "node",
      "args": ["/Users/someone/.growthtoolkit-mcp/dist/index.js"],
      "env": {
        "GROWTHTOOLKIT_API_KEY": "lf_your_api_key_here"
      }
    }
  }
}

Step 4. Ask the user for their GrowthToolkit API key. Tell them:

  • If they have an account: get it from https://enrich.growthtoolkit.io/api-keys/
  • If they don't have an account: sign up free at https://enrich.growthtoolkit.io/dashboard/?authType=get-started (no credit card needed, 1200 free credits)

Step 5. Replace lf_your_api_key_here in the config with the user's actual API key.

Step 6. Write the config to the correct file. Detect which AI tool the user is using and write to the matching config file:

AI Tool Config file path
Claude Desktop (macOS) ~/Library/Application Support/Claude/claude_desktop_config.json
Claude Desktop (Windows) %APPDATA%\Claude\claude_desktop_config.json
Claude Code ~/.claude/settings.json
Cursor .cursor/mcp.json in the project root
Windsurf ~/.windsurf/mcp.json

If the config file already exists and has other MCP servers, merge the "growthtoolkit" entry into the existing "mcpServers" object. Do NOT overwrite the file.

If the config file does not exist, create it with the full JSON config.

Step 7. Tell the user to restart their AI tool for the MCP server to activate.


What is GrowthToolkit?

GrowthToolkit is a B2B prospecting platform that finds real-time, triple-verified emails and phone numbers from any company. It uses deep search technology, real-time SMTP verification, and catch-all verification to find contacts that other tools miss, with a bounce rate under 2.5%.

It's the all-in-one alternative to Apollo, Lusha, Hunter, and RocketReach, with pay-as-you-go pricing and 1,200 free credits to start. No credit card required.

Sign up free | Visit growthtoolkit.io

Why Use This MCP Server?

Instead of switching between your AI assistant and the GrowthToolkit dashboard, just ask naturally:

  • "Find the email for John Smith at Google"
  • "Enrich this LinkedIn profile: https://www.linkedin.com/in/iamanantgupta/"
  • "Verify if hello@example.com is a valid email"
  • "Show me my prospect lists and export the top one"

Your AI assistant handles the API calls, parses the results, and gives you clean answers. It can also chain multiple tools together, like finding an email and then verifying it in one conversation.

Available Tools (17 total)

Enrichment

Tool What it does
enrich_linkedin Turn any LinkedIn URL into a full profile with emails, phones, job history, skills, and more
enrich_email Get the full profile behind an email address (name, company, title, socials)
enrich_phone Find the person behind a phone number with full profile data
enrich_domain Get company details from a domain name

Email Discovery & Verification

Tool What it does
find_email Find someone's email from their first name, last name, and company domain
verify_email Check if an email is valid, deliverable, and safe to send to

Task Status

Tool What it does
check_task Poll the status of async enrichment tasks (email enrichment returns results via task)

List Management

Tool What it does
list_prospects Browse your prospect/contact lists
list_email_finder Browse your email finder lists
list_email_verifier Browse your email verifier lists
list_linkedin_scraper Browse your LinkedIn scraper lists
list_sales_navigator_scraper Browse your Sales Navigator scraper lists

Data Export

Tool What it does
export_prospects Export enriched contacts from a prospect list
export_email_finder Export found emails from a list
export_email_verifier Export verified emails (filter by valid/invalid/all)
export_linkedin_scraper Export LinkedIn scraper results
export_sales_navigator_scraper Export Sales Navigator scraper results

Getting Started

1. Get your free API key

If you don't have an account yet, sign up for free (no credit card, takes 30 seconds). You get 1,200 free credits to start.

Then grab your API key from growthtoolkit.io/api-keys. It starts with lf_....

2. Install the MCP server (one command)

Run this in your terminal. It clones, builds, and prints the exact config to copy-paste.

macOS / Linux:

curl -fsSL https://raw.githubusercontent.com/iamanantgupta/growthtoolkit-mcp/main/setup.sh | bash

Windows (PowerShell):

irm https://raw.githubusercontent.com/iamanantgupta/growthtoolkit-mcp/main/setup.ps1 | iex

That's it. The script installs to ~/.growthtoolkit-mcp and prints the JSON config with the correct path for your machine.

3. Add the config to your AI tool

Copy the JSON config printed by the setup script. Then paste it into the right file:

Tool Config file
Claude Desktop (macOS) ~/Library/Application Support/Claude/claude_desktop_config.json
Claude Desktop (Windows) %APPDATA%\Claude\claude_desktop_config.json
Claude Code .claude/settings.json
Cursor .cursor/mcp.json
Windsurf .windsurf/mcp.json

The config will look like this (the setup script fills in the correct absolute path for your machine):

{
  "mcpServers": {
    "growthtoolkit": {
      "command": "node",
      "args": ["/Users/yourname/.growthtoolkit-mcp/dist/index.js"],
      "env": {
        "GROWTHTOOLKIT_API_KEY": "lf_your_api_key_here"
      }
    }
  }
}

Important: Always use the config printed by the setup script. It has the correct absolute path for your machine. The example above is just to show the format.

Important: If your config file already has other MCP servers, just add the "growthtoolkit" section inside the existing "mcpServers" object. Do not replace the entire file.

Important: After adding the config, restart your AI tool for the changes to take effect.

Replace lf_your_api_key_here with your actual API key from growthtoolkit.io/api-keys.

Manual install (if you prefer)

# macOS / Linux
git clone https://github.com/iamanantgupta/growthtoolkit-mcp.git $HOME/.growthtoolkit-mcp
cd $HOME/.growthtoolkit-mcp
npm install && npm run build
# Windows (PowerShell)
git clone https://github.com/iamanantgupta/growthtoolkit-mcp.git $env:USERPROFILE\.growthtoolkit-mcp
cd $env:USERPROFILE\.growthtoolkit-mcp
npm install; npm run build

Then use the config format above, replacing the path with the full absolute path to dist/index.js on your machine.

Tool Reference

Enrichment Tools

enrich_linkedin is the most powerful tool. Pass any LinkedIn URL and get back:

  • Verified email addresses and phone numbers (set emails: 1, phones: 1 to unlock)
  • Full name, headline, job title, and current company
  • Complete work history, education, and skills
  • Location, interests, and social profiles
  • Optional: list_id to save results, webhook_url for async callbacks

enrich_email works asynchronously. It returns a task_id right away. Use check_task with that ID to get the full enriched profile once it's ready (usually takes a few seconds).

enrich_phone requires a list_id parameter. Returns the same rich profile data.

enrich_domain returns company-level information from a domain name.

Email Tools

find_email takes first_name, last_name, and domain and returns the most likely email address. GrowthToolkit's deep search finds 30% more emails than traditional tools.

verify_email checks real-time SMTP validity. Returns is_valid, mx_domain, and account type (work vs free).

List & Export Tools

All list tools support page, page_size, q (search), and detailed (0 or 1).

All export tools support page for pagination. Email verifier export also takes type_ (valid, invalid, or all). LinkedIn scraper export takes type (search or profile).

Rate Limits

Category Limit Applies to
Action 2 req/sec Enrichment, email finder, email verifier
List 1 req/sec Listing and browsing lists
Export 10 req/10 sec Exporting data from lists
Status 1 req/2 sec Checking task status

When rate limited, the API returns HTTP 429 with a sec field telling you how long to wait.

Links

Built by

Created by Anant Gupta, Founder of GrowthToolkit.

License

MIT

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选