Insighto ai MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Insighto ai MCP or direct API to launch chatbots, automate customer support, manage conversations, and analyze engagement through natural language.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Insighto ai Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Insighto ai now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Add Intent To AssistantTool to add an intent to an assistant in Insighto.
Create AgencyTool to create a new agency in Insighto.
Create Contact Custom FieldTool to create a new contact custom field in Insighto.
Create FormTool to create a new form in Insighto.
Create IntentTool to create a new intent in Insighto.
Create PromptTool to create a new prompt in Insighto.
Create ProviderCreates a new AI provider configuration (e.
Create TagTool to create a new tag in Insighto.
Create ToolfunctionTool to create a new toolfunction in Insighto.
Create WebhookTool to create a new outbound webhook in Insighto.
Create WidgetTool to create a new widget with specified attributes.
Delete Assistant By IDTool to delete an assistant by its ID.
Delete Bulk Forms By IDsTool to delete multiple forms by their IDs in a single operation.
Delete Contacts In BulkTool to delete multiple contacts in bulk.
Delete Form By IDTool to delete a form by its unique identifier.
Delete Linked Assistant DatasourceTool to delete (unlink) a datasource from a linked assistant in Insighto.
Delete Link Tag Entity By IDTool to delete a link_tag_entity by its ID.
Delete Prompt By IDTool to delete a prompt by its unique ID.
Delete Provider By IDTool to delete an AI provider configuration by its unique identifier.
Delete Tag By IDTool to delete a tag by its unique identifier.
Delete Tool By IDTool to delete a tool by its ID.
Delete Toolfunction By IDTool to delete a toolfunction by its ID.
Delete Twilio Auth By IDTool to delete a Twilio authentication configuration by its ID.
Delete UserWhatsApp By IDTool to delete a UserWhatsApp by its ID.
Delete Widget By IDTool to delete a widget by its unique ID.
Get Agency Billing PlanTool to retrieve details of a specific agency billing plan by ID.
Get Agency Branding By IDTool to retrieve branding configuration for a specific agency by agency ID.
Get Agent ListTool to fetch a paginated list of agents.
Get Assistant By IDTool to retrieve details of a specific assistant by assistant ID.
Get Captured Form By Form IDTool to retrieve captured form submissions by form ID.
Get Contact By IDTool to retrieve details of a specific contact by contact ID.
Get Datasource By IDTool to retrieve details of a specific datasource by datasource ID.
Get Intent By IDTool to retrieve details of a specific intent by its ID.
Get List Of ContactsTool to fetch a paginated list of contacts.
Get List Of ConversationsTool to fetch a list of conversations.
Get List Of DatasourcesRetrieves a paginated list of data sources from Insighto AI.
Get List Of Data Sources Linked To Assistant IdTool to retrieve a paginated list of data sources linked to a specific assistant.
Get List Of Widgets Linked To Assistant IdTool to fetch a paginated list of widgets linked to a specific assistant.
Get Pricing For UserTool to retrieve pricing information for Insighto.
Get Prompt By IDTool to retrieve details of a specific prompt by prompt ID.
Get Provider By IDTool to retrieve details of a specific provider by provider ID.
Get Speechtotext ListTool to fetch a paginated list of available speech-to-text voice configurations.
Get Widget By IDTool to retrieve details of a specific widget by widget ID.
List ChannelsTool to retrieve a paginated list of channels.
Read Campaign Contact ListTool to retrieve a paginated list of contacts associated with a specific campaign.
Read Contact Custom Field ListTool to retrieve a list of custom fields associated with contacts.
Read Contact Sync Log ListTool to retrieve a paginated list of contact sync logs.
Read Intents ListTool to retrieve a list of all intents.
Read Tag ListTool to retrieve a paginated list of tags.
Read Tool Function Invoke Log ListTool to retrieve a paginated list of tool function invoke logs.
Read Tool Toolfunction ListTool to retrieve a paginated list of tool functions for a specific tool.
Read Twilio Auth ListTool to retrieve a paginated list of Twilio authentications.
Retrieve Linked Tool And UserTool to retrieve linked tool and user information for a specific tool.
Retrieve List Of User Custom VoiceTool to retrieve a paginated list of user custom voices.
Retrieve User Monthly Usages AggregationTool to retrieve user monthly usages aggregation data.
Retrieve Webhook LogTool to retrieve webhook logs for a specific webhook.
Send Messages To ContactsTool to send messages to a list of contacts in bulk.
Update Link Tool UserTool to update a link tool user by its ID.
Update Tool By IDTool to update a tool by its ID.
Update Toolfunction By IDTool to update an existing toolfunction by its ID.
Update Twilio Auth By IDTool to update a Twilio authentication configuration by its ID.
Update User ProfileTool to update a user profile in Insighto.
Update UserWhatsApp By IDTool to update a UserWhatsApp configuration by its ID.
Update Webhook By IDTool to update an outbound webhook by its unique ID.
Upsert Contact By Email Or Phone NumberTool to upsert (create or update) a contact in Insighto.
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 Insighto ai tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Get list of conversations from last week')
        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

Why Use Composio?

AI Native Insighto ai Integration

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

Managed Auth

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

Frequently Asked Questions

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

Yes, Insighto ai 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
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
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.