Skip to content

apollo-mcp-server

MCP server for Apollo.io — people search, contact management, sequences, and organization enrichment via the Model Context Protocol

302
Weekly Downloads
automate.revenue_ops.personalization#mcp#apollo#apollo.io#sales#outreach#crm#mcp-server#prospecting

Install apollo-mcp-server in your MCP client

apollo-mcp-server is a Model Context Protocol server. Add it to your MCP client config once, restart, and the server's tools become available to your AI assistant. The same JSON snippet below works across all four major clients — only the config file path differs.

  1. Locate your client's MCP config file.
    • Cursor: ~/.cursor/mcp.json
    • Claude Desktop (macOS): ~/Library/Application Support/Claude/claude_desktop_config.json
    • Claude Desktop (Windows): %APPDATA%\Claude\claude_desktop_config.json
    • VS Code: Settings → Extensions → MCP
    • Windsurf: Settings → MCP Servers
  2. Add apollo-mcp-server to the mcpServers map — paste the snippet below into your config file. If you already have other MCP servers, merge the entry into the existing mcpServers object.
  3. Restart your client so it picks up the new server.
  4. Verify — ask the assistant to list available tools; apollo-mcp-server's tools should appear.
{
  "mcpServers": {
    "apollo-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "apollo-mcp-server"
      ]
    }
  }
}

Install apollo-mcp-server in Cursor

Open ~/.cursor/mcp.json in your editor, paste the snippet above into mcpServers, save, and restart Cursor. apollo-mcp-server will show up in the assistant's tool list on next launch.

Install apollo-mcp-server in Claude Desktop (macOS)

Open ~/Library/Application Support/Claude/claude_desktop_config.json in your editor, paste the snippet above into mcpServers, save, and restart Claude Desktop (macOS). apollo-mcp-server will show up in the assistant's tool list on next launch.

Install apollo-mcp-server in Claude Desktop (Windows)

Open %APPDATA%\Claude\claude_desktop_config.json in your editor, paste the snippet above into mcpServers, save, and restart Claude Desktop (Windows). apollo-mcp-server will show up in the assistant's tool list on next launch.

Install apollo-mcp-server in VS Code

Open Settings → Extensions → MCP in your editor, paste the snippet above into mcpServers, save, and restart VS Code. apollo-mcp-server will show up in the assistant's tool list on next launch.

npm package: apollo-mcp-server

Transport

apollo-mcp-server supports the following MCP transports. Most AI clients use stdio by default for locally-installed servers.

stdio

From the apollo-mcp-server README

# apollo-mcp-server MCP server for [Apollo.io](https://www.apollo.io/) — search contacts, enrich companies, manage sequences, and update opportunities through Claude and other MCP clients. ## Tools | Tool | Description | |------|-------------| | `search_people` | Search contacts by name, title, company, seniority, location, or employee size | | `get_person` | Fetch a single contact by ID | | `create_contact` | Create a new contact in Apollo | | `update_contact` | Update an existing contact | | `enrich_person` | Enrich a person by email, name, or LinkedIn URL | | `bulk_enrich_people` | Enrich up to 10 people at once | | `search_organizations` | Search companies by name, industry, size, tech stack, or location | | `get_organization` | Fetch a single account by ID | | `enrich_organization`

Other Model Context Protocol servers in the same space as apollo-mcp-server. Each one adds different capabilities to your AI assistant — pick based on the data sources or workflows you need.

Browse the full MCP server directory or use Stork's one-line install to let your agent pick the right server automatically.