Skip to main content
Glama
edwardchoh

apollo-io-mcp-server

by edwardchoh

Apollo.io MCP Server

This project provides an MCP server that exposes the Apollo.io API functionalities as tools. It allows you to interact with the Apollo.io API using the Model Context Protocol (MCP).

Overview

The project consists of the following main components:

  • apollo_client.py: Defines the ApolloClient class, which is used to interact with the Apollo.io API. It includes methods for people enrichment, organization enrichment, people search, organization search, and organization job postings.

  • server.py: Defines the FastMCP server, which exposes the Apollo.io API functionalities as tools. It uses the ApolloClient class defined in apollo_client.py to interact with the API.

  • apollo/: Contains the data models for the Apollo.io API, such as PeopleEnrichmentQuery, OrganizationEnrichmentQuery, PeopleSearchQuery, OrganizationSearchQuery, and OrganizationJobPostingsQuery.

Related MCP server: Apollo.io MCP Server

Functionalities

The following functionalities are exposed as MCP tools:

  • people_enrichment: Use the People Enrichment endpoint to enrich data for 1 person.

  • organization_enrichment: Use the Organization Enrichment endpoint to enrich data for 1 company.

  • people_search: Use the People Search endpoint to find people.

  • organization_search: Use the Organization Search endpoint to find organizations.

  • organization_job_postings: Use the Organization Job Postings endpoint to find job postings for a specific organization.

Usage

To use this MCP server, you need to:

  1. Set the APOLLO_IO_API_KEY environment variable with your Apollo.io API key. Or create '.env' file in the project root with APOLLO_IO_API_KEY.

  2. Get dependencies: uv sync

  3. Run the uv run mcp run server.py

Data Models

The apollo/ directory contains the data models for the Apollo.io API. These models are used to define the input and output of the MCP tools.

  • apollo/people.py: Defines the data models for the People Enrichment endpoint.

  • apollo/organization.py: Defines the data models for the Organization Enrichment endpoint.

  • apollo/people_search.py: Defines the data models for the People Search endpoint.

  • apollo/organization_search.py: Defines the data models for the Organization Search endpoint.

  • apollo/organization_job_postings.py: Defines the data models for the Organization Job Postings endpoint.

Testing

To test, set APOLLO_IO_API_KEY environment variable and run uv run apollo_client.py.

Usage with Claude for Desktop

  1. Configure Claude for Desktop to use these MCP servers by adding them to your claude_desktop_config.json file:

{
  "mcpServers": {
    "apollo-io-mcp-server": {
      "type": "stdio",
      "command": "uv",
      "args": [
        "run",
        "mcp",
        "run",
        "path/to/apollo-io-mcp-server/server.py"
      ]
    }
  }
}

Resources

Available Tools

5 tools
organization_enrichmentC
Use the Organization Enrichment endpoint to enrich data for 1 company.
https://docs.apollo.io/reference/organization-enrichment
ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes

TDQS

C2.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, so the description should disclose behavioral traits like read-only status, prerequisites, or return structure. It merely states 'enrich data' without mentioning if it modifies data or what the response contains.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very short (one sentence plus link), which is concise but sacrifices completeness. The link to docs is helpful but not part of the inline description. It front-loads the purpose but lacks depth.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the single parameter and no output schema, the description is incomplete. It does not explain what enrichment results look like or how to handle the response. Sibling tools exist, but no comparative context is provided.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds no meaning beyond the input schema. The 'query' parameter is not explained, though its nested 'domain' field has a schema description. With 0% schema description coverage on the main parameter, the description should compensate but fails.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool enriches data for one company, using a specific verb (enrich) and resource (company). It distinguishes from siblings like organization_search (searching) and organization_job_postings (job listings). However, it could be more specific about what 'enrich' entails (e.g., company details, funding).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance provided on when to use this tool vs. alternatives like organization_search or people_enrichment. The description only states what it does without context for selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

organization_job_postingsC
Use the Organization Job Postings endpoint to find job postings for a specific organization.
https://docs.apollo.io/reference/organization-jobs-postings
ParametersJSON Schema
NameRequiredDescriptionDefault
organization_idYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must disclose behavior fully. It only says 'find job postings' with no mention of limitations, pagination, error conditions, or what happens if the organization_id is invalid.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise with one sentence and a link, front-loading the purpose. However, it is too brief and omits necessary details, reducing informativeness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and a simple parameter, the description fails to mention return format, expected results, or any constraints. It is incomplete for an agent to invoke correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has 0% description coverage for the sole parameter organization_id. The description does not add any meaning beyond the parameter name; it doesn't explain what the ID represents or how to obtain it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'find' and resource 'job postings', scoped to a specific organization, distinguishing it from sibling tools like organization_enrichment or people_search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance on when to use this tool versus alternatives like organization_enrichment or organization_search. The description simply states what it does without context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

people_enrichmentC
Use the People Enrichment endpoint to enrich data for 1 person.
https://docs.apollo.io/reference/people-enrichment
ParametersJSON Schema
NameRequiredDescriptionDefault
queryYes

TDQS

C2.3/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, and the description provides no behavioral information. It does not disclose whether the tool consumes credits, requires authentication, has rate limits, or produces side effects. The agent gains no insight beyond the basic action.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise: one sentence and a link. It front-loads the action efficiently and wastes no words. However, it is so brief that it omits critical context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations, output schema, and any parameter guidance in the description, the tool is severely under-described. The single sentence 'enrich data for 1 person' is insufficient for an agent to understand how to use it effectively, leaving major gaps in contextual understanding.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds no parameter information; it does not mention any of the input fields. Although the schema itself has detailed parameter descriptions, the description fails to add value beyond that. With 0% schema description coverage, this is a significant gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states the tool enriches data for a single person, which clearly distinguishes it from sibling tools like people_search (searching multiple) and organization_enrichment. However, it does not specify what kind of data is enriched (e.g., contact info, employment), making it slightly vague.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No usage guidance is provided. The description does not indicate when to use this tool versus alternatives, nor does it mention any prerequisites or exclusions. The agent is left without context for appropriate invocation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv0.1.0
    • First observedorganization_enrichment
    • First observedorganization_job_postings
    • First observedorganization_search
    • First observedpeople_enrichment
    • First observedpeople_search

TDQS

B3.2/5.0
Disambiguation5/5

Each tool targets a distinct entity and operation: organization enrichment, job postings, search; people enrichment and search. No overlapping purposes.

Naming Consistency5/5

All tools use a consistent pattern of <entity>_<operation> in snake_case, with operations like enrichment, search, and job_postings.

Tool Count5/5

With 5 tools covering the two main domains (organizations and people) and key operations (search and enrichment), the count is well-scoped.

Completeness5/5

The tool set provides search and enrichment for both entities, plus job postings for organizations. No obvious gaps for the intended sales intelligence use case.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    D
    maintenance
    Enables AI assistants to interact with Apollo.io API for sales and marketing activities. Provides tools to search for companies and contacts, enrich person and organization data, and manage accounts with comprehensive lead generation capabilities.
    11
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to interact with the Apollo.io API to search global databases and enrich company and person data. It facilitates managing contacts and accounts, retrieving tech stacks, and finding job postings through natural language.
    24
    1
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    FastMCP server exposing the full operational surface of the Apollo.io REST API to AI assistants. Provides 27 tools for outbound sales automation including campaign health, sequence management, mailbox warmup, CRM operations, and programmatic template/sequence editing with audit logging.
    3
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides tools to search and enrich people and companies, retrieve job postings, and search news articles via the Apollo.io API.
    66
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/edwardchoh/apollo-io-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server