Apollo Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Apollo MCP or direct API to find leads, send outreach emails, manage contacts, and update pipeline stages through natural language.
Apollo Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Supported Tools

Tools
Add Contacts to SequenceAdds contacts to a specified apollo email sequence by initiating an asynchronous background job and returning its details.
Bulk organization enrichmentEnriches data for up to 10 organizations simultaneously by providing a list of their base company domains (e.
Bulk people enrichmentUse to enrich multiple person profiles simultaneously with comprehensive data from apollo's database.
Bulk update account stageBulk updates the stage for specified existing apollo.
Create an Apollo accountCreates a new account in apollo.
Create Apollo contactCreates a new contact in apollo.
Create Apollo dealCreates a new sales opportunity (deal) in apollo.
Create Apollo TaskCreates a distinct apollo.
Get LabelsRetrieves all labels from apollo.
Get opportunity stagesRetrieves all configured opportunity (deal) stages from the apollo.
Get Organization Job PostingsRetrieves paginated job postings for a specified organization by its id, optionally filtering by domain; ensure `organization id` is a valid identifier.
Get typed custom fieldsRetrieves all typed custom field definitions available in the apollo.
List Apollo account stagesRetrieves all available apollo.
List apollo contact stagesRetrieves all available contact stages from an apollo account, including their unique ids and names.
List Apollo dealsRetrieves a list of deals from apollo, using apollo's default sort order if 'sort by field' is omitted.
List email accountsRetrieves all email accounts and their details for the authenticated user; takes no parameters.
List Apollo UsersRetrieves a list of all users (teammates) associated with the apollo account, supporting pagination via `page` and `per page` parameters.
Enrich organization dataFetches comprehensive organization enrichment data from apollo.
Search organizations in ApolloSearches apollo's database for organizations using various filters; consumes credits (unavailable on free plans), retrieves a maximum of 50,000 records, and uses `page` (1-500) and `per page` (1-100) for pagination.
Enrich person with ApolloEnriches and retrieves information for a person from apollo.
Apollo people searchSearches apollo's contact database for people using various filters; results are limited to 50,000 records and this action does not enrich contact data.
Search Apollo AccountsSearches for accounts within your existing apollo.
Search Apollo contactsSearches apollo contacts using keywords, stage ids (from 'list contact stages' action), or sorting (max 50,000 records; `sort ascending` requires `sort by field`).
Search sequencesSearches for sequences (e.
Search tasksSearches for tasks in apollo.
Update an Apollo accountUpdates specified attributes of an existing account in apollo.
Update Apollo contactUpdates specified attributes of an existing apollo.
Update contact ownershipUpdates the ownership of specified apollo contacts to a given apollo user, who must be part of the same team.
Update contact stageUpdates the stage for one or more existing contacts in apollo.
Update contact status in sequenceUpdates a contact's status within a designated apollo sequence, but cannot set the status to 'active'.
Update Apollo dealUpdates specified fields of an existing apollo.

Connect Apollo MCP Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Apollo tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Create a new Apollo contact for Jane Doe at janedoe@example.com, company Acme Corp, title Sales Manager.')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent

Connect Apollo API Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio_openai
Install the Composio SDK

Initialize Composio and Create Tool Router Session

python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
Import and initialize Composio client, then create a Tool Router session

Execute Apollo Tools via Tool Router with Your Agent

python
tools = session.tools
response = openai.responses.create(
  model='gpt-4.1',
  tools=tools,
  input=[{
    'role': 'user',
    'content': 'Enrich these 5 company domains with Apollo organization data'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
Get tools from Tool Router session and execute Apollo actions with your Agent

Why Use Composio?

AI Native Apollo Integration

  • Supports both Apollo MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Apollo data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Apollo access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access Apollo
  • Scoped, least privilege access to Apollo resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use Apollo with Composio?

Yes, Apollo requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.