- Built from scratch: apollo, chargebee, datadog, greenhouse, lever, loom, pandadoc, salesloft, sendgrid, supabase, typeform, webflow, zoho-crm, twilio, reonomy - TSC fixes: brevo, google-console, housecall-pro, meta-ads, rippling, bamboohr, close, fieldedge, freshdesk, helpscout, toast, touchbistro, hubspot, notion, quickbooks, airtable, gusto, intercom, linear, monday, salesforce, shopify, square, wave, xero - Entry points added: close, touchbistro - All 65 active servers compile with 0 TypeScript errors - 4 specialty servers skipped (competitor-research, compliance-grc, n8n-apps, product-analytics)
Apollo.io MCP Server
MCP server for the Apollo.io sales engagement platform, providing comprehensive tools for managing contacts, accounts, sequences, emails, tasks, and opportunities.
Features
- Contacts Management - Search, create, update, and manage sales contacts
- Accounts/Organizations - Track and manage target companies
- Email Sequences - Automate outreach campaigns
- Email Communications - Send and track emails
- Task Management - Create and track follow-up actions
- Opportunity Tracking - Manage deals through your sales pipeline
Installation
npm install
npm run build
Configuration
Set your Apollo.io API key as an environment variable:
export APOLLO_API_KEY="your_api_key_here"
Usage
Run the server:
npm start
# or
node dist/index.js
Available Tools (26 total)
Contacts (6 tools)
list_contacts- Browse contact database with paginationget_contact- Retrieve detailed contact informationsearch_contacts- Advanced contact search with filterscreate_contact- Add new contactsupdate_contact- Modify contact detailsdelete_contact- Remove contacts
Accounts (5 tools)
list_accounts- Browse organization databaseget_account- Get detailed company informationsearch_accounts- Advanced company search with filterscreate_account- Add new companiesupdate_account- Modify company details
Sequences (5 tools)
list_sequences- View all email sequencesget_sequence- Get sequence details and stepscreate_sequence- Create new outreach campaignsadd_contacts_to_sequence- Enroll contacts in sequencesremove_contacts_from_sequence- Unenroll contacts
Emails (4 tools)
send_email- Send one-off emailslist_email_accounts- View connected email accountslist_email_threads- Browse email conversationsget_email_thread- View full email thread
Tasks (3 tools)
list_tasks- View to-do itemscreate_task- Schedule follow-up actionsupdate_task- Modify or complete tasks
Opportunities (3 tools)
list_opportunities- View sales pipelinecreate_opportunity- Create new dealsupdate_opportunity- Update deal status and details
API Coverage Manifest
Total Apollo.io API Endpoints: ~150+
Implemented in this server: 26
Coverage: ~17%
Covered Areas:
- ✅ Core contact management
- ✅ Account/organization management
- ✅ Email sequence automation
- ✅ Email sending and threads
- ✅ Task management
- ✅ Opportunity/deal tracking
Not Yet Implemented:
- ⏳ Advanced analytics and reporting
- ⏳ Team and user management
- ⏳ Custom fields management
- ⏳ Labels and stages CRUD
- ⏳ Data enrichment endpoints
- ⏳ Webhook configuration
- ⏳ Import/export bulk operations
- ⏳ Call logging and recordings
- ⏳ Meeting scheduling
- ⏳ Email templates
- ⏳ Saved searches
- ⏳ Activity logging
Architecture
apollo/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── client/
│ │ └── apollo-client.ts # API client with rate limiting
│ ├── tools/
│ │ ├── contacts.ts # Contact tools
│ │ ├── accounts.ts # Account tools
│ │ ├── sequences.ts # Sequence tools
│ │ ├── emails.ts # Email tools
│ │ ├── tasks.ts # Task tools
│ │ └── opportunities.ts # Opportunity tools
│ └── types/
│ └── index.ts # TypeScript interfaces
├── package.json
├── tsconfig.json
└── README.md
Rate Limiting
The client implements automatic rate limiting:
- Max 5 concurrent requests
- Minimum 200ms between requests
- Automatic retry on 429 responses
Error Handling
The server provides detailed error messages for:
- Authentication failures (401)
- Permission issues (403)
- Resource not found (404)
- Validation errors (422)
- Rate limit exceeded (429)
- Server errors (500+)
License
MIT