Callpage Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Callpage MCP or direct API to trigger instant callbacks, capture leads, manage contact requests, and automate sales follow-ups through natural language.
Callpage Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Supported Tools

Tools
Get All ManagersTool to retrieve a list of managers for a specific widget with pagination.
Get All SMS MessagesTool to retrieve all sms messages for a widget.
Get All UsersTool to retrieve a list of all users with pagination.
Get All WidgetsTool to retrieve a list of widgets with pagination.
Get API RootTool to get the root api greeting.
Get Manager Status StatisticsTool to retrieve statistical data about manager statuses.
Get SMS StatisticsTool to retrieve statistical data about sms messages.
Get WidgetTool to retrieve details of a specific widget by id.
Get Widget Status StatisticsTool to retrieve statistical data about widget statuses.
Create Voice MessageTool to create a custom voice message for a widget.
Create WidgetTool to create a new widget.
Delete Widget by IdTool to delete a widget by id.
Reset SMSTool to reset sms messages to default for a widget.
Reset Voice MessagesTool to reset voice messages to default for a widget.
Update ManagerTool to update an existing manager.
Update WidgetTool to update an existing widget.
Widget Call or ScheduleTool to initiate or schedule a call via widget.

Why Use Composio?

AI Native Callpage Integration

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

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke Callpage 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 Callpage
  • Scoped, least privilege access to Callpage resources
  • Full audit trail of agent actions to support review and compliance

Connect Callpage 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 Callpage tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Get all SMS messages for widget 12345')
        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 Callpage 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 Callpage 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': 'Get a list of all widgets with their statuses'
  }]
)
result = composio.provider.handle_tool_calls(
  response=response,
  user_id='your-user-id'
)
print(result)
Get tools from Tool Router session and execute Callpage actions with your Agent

Use Callpage with any AI Agent Framework

Choose a Framework you want to connect Callpage with

OpenAI Agents SDK

OpenAI Agents SDK

Use Callpage MCP with OpenAI Agents SDK

Claude Agents SDK

Claude Agents SDK

Use Callpage MCP with Claude Agents SDK

Google ADK

Google ADK

Use Callpage MCP with Google ADK

Langchain

Langchain

Use Callpage MCP with Langchain

AI SDK

AI SDK

Use Callpage MCP with AI SDK

Mastra AI

Mastra AI

Use Callpage MCP with Mastra AI

LlamaIndex

LlamaIndex

Use Callpage MCP with LlamaIndex

CrewAI

CrewAI

Use Callpage MCP with CrewAI

Pydantic AI

Pydantic AI

Use Callpage MCP with Pydantic AI

Autogen

Autogen

Use Callpage MCP with Autogen

Frequently Asked Questions

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

Yes, Callpage 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.