MCP (Model Context Protocol) server for Apollo.io B2B sales intelligence API. Search for prospects, enrich contacts, and discover companies directly from Claude, ChatGPT, or any LLM that supports MCP.
If you find this MCP server useful, please consider supporting its development!
👉 Click here to support this project
Your support helps maintain and improve this tool for everyone. Thank you! 🙏
- 🔍 People Search - Find prospects by job title, location, company
- 👤 People Enrichment - Enrich contact data with emails, phone numbers, LinkedIn profiles
- 🏢 Organization Enrichment - Get detailed company information
- 🌍 Organization Search - Discover companies by industry, size, location
- 📊 B2B Intelligence - Access Apollo's database of 275M+ contacts
Add to your Claude Desktop configuration (~/Library/Application Support/Claude/claude_desktop_config.json on Mac or %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"apollo-io": {
"command": "npx",
"args": ["-y", "@louis030195/apollo-io-mcp"],
"env": {
"APOLLO_API_KEY": "your-apollo-api-key"
}
}
}
}# Install globally in user scope with API key
claude mcp add -s user apollo-io npx -e APOLLO_API_KEY=your-apollo-api-key -- -y @louis030195/apollo-io-mcp- Go to Apollo.io
- Sign up or log in
- Navigate to Settings → Integrations → API
- Copy your API key
Once configured, you can use natural language to interact with Apollo.io:
- "Find CTOs in San Francisco working at Series A startups"
- "Search for product managers in New York"
- "Who are the engineers at Anthropic?"
- "Enrich this email: [email protected]"
- "Find contact info for John Smith at Apollo.io"
- "Get details about [email protected]"
- "Find SaaS companies in San Francisco with 50-200 employees"
- "Search for AI companies in the Bay Area"
- "List fintech startups in London"
- "Tell me about apollo.io"
- "Get company info for anthropic.com"
- "What technologies does stripe.com use?"
Search for people/prospects in Apollo's B2B database.
Parameters:
keywords(string, optional): Keywords to search for (job title, company, etc)titles(array, optional): Job titles to filter bylocations(array, optional): Locations to filter byorganization_ids(array, optional): Organization IDs to filter bypage(number, optional): Page number for pagination (default: 1)per_page(number, optional): Results per page, max 100 (default: 10)
Returns: List of people with contact info, job titles, companies, etc.
Enrich a person's data with Apollo's B2B intelligence.
Parameters:
first_name(string, optional): Person's first namelast_name(string, optional): Person's last nameemail(string, optional): Person's email addressdomain(string, optional): Company domainorganization_name(string, optional): Company name
Returns: Detailed person data including email, phone, LinkedIn, job info, etc.
Enrich a company's data with Apollo's B2B intelligence.
Parameters:
domain(string, required): Company domain (e.g., apollo.io)
Returns: Detailed company data including size, industry, technologies, funding, etc.
Search for companies/organizations in Apollo's B2B database.
Parameters:
keywords(string, optional): Keywords to search forlocations(array, optional): Locations to filter byemployee_ranges(array, optional): Employee count ranges (e.g., ['1-10', '11-50'])page(number, optional): Page number for pagination (default: 1)per_page(number, optional): Results per page, max 100 (default: 10)
Returns: List of organizations with company info, size, location, etc.
# Clone the repo
git clone https://github.com/louis030195/apollo-io-mcp.git
cd apollo-io-mcp
# Install dependencies
npm install
# Build
npm run build
# Run tests
npm test
# Run locally
APOLLO_API_KEY=your-api-key npm startSee Apollo.io API Docs for full API details.
MIT