Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

Explore

  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Tags index
  • Submit a server
  • Pricing

Learn

  • Guides hub
  • What is MCP?
  • Install guide
  • Troubleshooting
  • Security
  • Blog
  • Blog RSS

Tools

  • All tools
  • Config generator
  • Config validator
  • MCP playground
  • OpenAPI β†’ MCP
  • Badge generator

For agents

  • API docs
  • Trust & traffic
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
  • Remote MCP β†— (opens in a new tab)

Company

  • About
  • Contact
  • X (@AllMCPs) β†— (opens in a new tab)
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on Buildlist
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. Mcp Apollo
M
Health: Not checked yetWe have not completed a health check for this listing yet.Last checked 8/10/2026, 11:45:25 PM

Mcp Apollo

Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

Apollo.io MCP server. Search people, enrich contacts, find emails, research companies.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Install Config Generator

Choose your client
claude_desktop_config.json
{
  "mcpServers": {
    "mcp-apollo": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-apollo"
      ]
    }
  }
}

πŸ’‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

mcp-apollo

An open-source, self-hosted MCP server for Apollo.io β€” gives your AI agents direct access to Apollo's B2B sales intelligence database.

Deploy it to your own Cloudflare account in under 5 minutes. You own the infrastructure, you control the costs. No shared hosting, no vendor lock-in.

Built and maintained by AgenTeam. MIT licensed.


How it works

Code
Your Cloudflare Workers account
  └── mcp-apollo Worker  (your deploy, your infra)
        └── MCP client sends requests with your Apollo API key
              └── Worker proxies to Apollo.io API
                    └── Returns enriched data to your agent
  • You deploy the Worker to your own Cloudflare account (free tier handles most use cases)
  • You pass your own Apollo.io API key on every request β€” the Worker never stores it
  • No shared infrastructure β€” every user runs their own isolated instance

Quick deploy (5 minutes)

Prerequisites

  • Node.js 18+
  • A Cloudflare account (free tier is sufficient)
  • An Apollo.io API key

Steps

bash
# 1. Clone the repo
git clone https://github.com/AgenTeam-AI-2026/mcp-apollo
cd mcp-apollo

# 2. Install dependencies
npm install

# 3. Log in to your Cloudflare account
npx wrangler login

# 4. Deploy
npx wrangler deploy

Your server is now live at:

Code
https://mcp-apollo.<your-subdomain>.workers.dev

That's your personal MCP server URL. Use it in the connection configs below.


Connect your MCP client

Replace YOUR_WORKER_URL with your deployed URL and YOUR_APOLLO_KEY with your Apollo.io API key.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

config.json
{
  "mcpServers": {
    "apollo": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://YOUR_WORKER_URL/mcp"],
      "env": {
        "APOLLO_API_KEY": "YOUR_APOLLO_KEY"
      }
    }
  }
}

Restart Claude Desktop after saving.

Claude Code

Terminal
claude mcp add apollo \
  --transport http \
  --url https://YOUR_WORKER_URL/mcp \
  --header "Authorization: Bearer YOUR_APOLLO_KEY"

Cursor

In .cursor/mcp.json:

config.json
{
  "mcpServers": {
    "apollo": {
      "url": "https://YOUR_WORKER_URL/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_APOLLO_KEY"
      }
    }
  }
}

Windsurf

In ~/.codeium/windsurf/mcp_config.json:

config.json
{
  "mcpServers": {
    "apollo": {
      "serverUrl": "https://YOUR_WORKER_URL/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_APOLLO_KEY"
      }
    }
  }
}

Get an Apollo.io API key

  1. Log in to apollo.io
  2. Go to Settings β†’ Integrations β†’ API
  3. Click Create API Key
  4. Copy the key β€” paste it into your MCP client config above

Tools

apollo_search_people

Search Apollo's database for people matching filters.

ParameterTypeDescription
person_titlesstring[]Job titles, e.g. ["VP Engineering", "CTO"]
person_senioritiesstring[]"vp", "c_suite", "director", "manager", "senior"
organization_domainsstring[]Company domains, e.g. ["stripe.com"]
person_locationsstring[]Locations, e.g. ["New York", "San Francisco"]
organization_num_employees_rangesstring[]Size ranges, e.g. ["51,200", "201,500"]
pagenumberPage number (default: 1)
per_pagenumberResults per page, max 25 (default: 10)

apollo_enrich_person

Get a full enriched profile for a specific person.

ParameterTypeDescription
emailstringMost reliable identifier
linkedin_urlstringLinkedIn profile URL
first_name + last_name + organization_namestringName + company combo

At least one identifier is required.


apollo_search_companies

Search for companies matching criteria.

ParameterTypeDescription
q_organization_keyword_tagsstring[]Keywords/industries, e.g. ["SaaS", "fintech"]
organization_locationsstring[]HQ locations
organization_num_employees_rangesstring[]Size ranges
organization_funding_stagesstring[]"Seed", "Series A", "Series B" etc.
pagenumberPage (default: 1)
per_pagenumberMax 25 (default: 10)

apollo_enrich_company

Get a full company profile by domain or name.

ParameterTypeDescription
domainstringe.g. "stripe.com" β€” preferred
namestringCompany name β€” fallback

Returns: description, headcount, founding year, total funding, funding stage, tech stack, keywords.


apollo_get_job_postings

Get active job postings for a company β€” a strong buying/hiring signal.

ParameterTypeDescription
organization_idstringApollo org ID from apollo_enrich_company
job_titlesstring[]Optional filter, e.g. ["engineer", "sales"]

apollo_find_email

Retrieve a person's verified email by their Apollo person ID.

ParameterTypeDescription
person_idstringApollo person ID from apollo_search_people

Apollo.io rate limits

PlanRequests / hour
Free50
Basic200
Professional1,000
OrganizationCustom

The server returns rate limit metadata with every response (rate_limits.remaining, rate_limits.resetAt). On 429 errors it returns an informative message β€” it never silently fails.


Cloudflare Workers free tier

MetricFree limit
Requests100,000 / day
CPU time10ms / request

100k requests/day is enough for most individual or small-team deployments. If you exceed it, upgrade to the Workers Paid plan ($5/month for 10M requests).


Local development

Terminal
npm install
npm run dev
# Server runs at http://localhost:8787

Run tests

Terminal
npm test                                        # unit + RALPH-loop tests
APOLLO_API_KEY=your_key npx vitest run test/e2e # E2E against live Apollo API

CI/CD on your fork

The repo includes GitHub Actions workflows:

  • ci.yml β€” runs typecheck, build check, and tests on every push
  • deploy.yml β€” deploys to Cloudflare Workers on merge to main
  • e2e.yml β€” nightly E2E tests against the live Apollo API

To enable auto-deploy, add these secrets in your fork under GitHub β†’ Settings β†’ Secrets β†’ Actions:

SecretWhere to get it
CLOUDFLARE_API_TOKENCloudflare Dashboard β†’ My Profile β†’ API Tokens β†’ Create Token (use "Edit Cloudflare Workers" template)
CLOUDFLARE_ACCOUNT_IDCloudflare Dashboard β†’ Workers & Pages β†’ right sidebar

To enable nightly E2E tests, also add APOLLO_API_KEY as a secret and set the repo variable APOLLO_E2E_ENABLED to true.


Security

  • Your Apollo API key is passed as a Bearer token in the Authorization header on each request
  • The Worker never stores, logs, or persists your API key
  • Each request is stateless β€” the key is used only for that request's Apollo API call
  • You control the entire deployment β€” no data touches third-party infrastructure

Built by AgenTeam

AgenTeam builds AI agent teams for B2B sales and GTM operations. mcp-apollo is one of several open-source MCP servers we publish to give agents direct access to the tools modern sales teams rely on.


License

MIT Β© AgenTeam-AI-2026

Related MCP Servers

View all in Developer Tools View all alternatives
  • M
    Mcp

    B2B prospecting from your Enginy workspace: find, enrich, and reach contacts and companies.

    πŸ’» Developer Tools0 views
    Compare vs Mcp β†’
  • A
    Agent Skills Search Server

    Search and discover Agent Skills from the skills.sh registry. Powered by HAPI MCP server.

    πŸ’» Developer Tools0 views
    Compare vs Agent Skills Search Server β†’
  • A
    Ai Netcafe

    Compare LLM cost & latency on one prompt, translate PDF keeping layout, cited research, make PPTX

    πŸ’» Developer Tools0 views
    Compare vs Ai Netcafe β†’
  • S
    Signals

    Predictive Signals, Company Search, Sector Trends and Contacts for PEs, IBs, M&A dealmakers.

    πŸ’» Developer Tools0 views
    Compare vs Signals β†’

Frequently Asked Questions about Mcp Apollo

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "mcp-apollo": { "command": "npx", "args": ["-y", "mcp-apollo"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMcp Apollo AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/mcp-apollo?style=directory)](https://allmcps.com/mcp/mcp-apollo)
HTML Embed
<a href="https://allmcps.com/mcp/mcp-apollo"><img src="https://allmcps.com/api/badge/mcp-apollo?style=directory" alt="Mcp Apollo on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
0/5 checks healthy over the last 6h
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to get the verified badge and attach your website.

Free dofollow backlink: after claiming, verify your product site and place a dofollow AllMCPs badge β€” we recheck it stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to Mcp Apollo β†’Install in Claude DesktopInstall in CursorInstall in VS Code