Converse Logo
Platform Features

Integrations

Connect Converse to your existing CRM, helpdesk, data warehouse, or any other system using webhooks, HTTP tools, or MCP servers.

Webhooks (Outbound Events)

Configure webhooks to receive real-time notifications when events occur in Converse. Your endpoint receives a POST request with a JSON payload within milliseconds of the event.

Available events

HTTP Tools (Agent actions)

Your agents can call any HTTP endpoint mid-conversation. This is the primary way to integrate with CRMs, databases, and business systems. See Knowledge & Tools for full configuration details.

Common use cases

Example: CRM lookup

json
{
  "name": "get_customer",
  "type": "http",
  "http_method": "GET",
  "http_url": "https://crm.example.com/customers?phone={{caller_phone}}",
  "http_headers": { "Authorization": "Bearer {{api_token}}" },
  "description": "Look up customer record by phone number at the start of a call",
  "when_to_use": "When the call starts, look up the customer's name and account status"
}

MCP Servers

Model Context Protocol (MCP) is an open standard that lets you connect any MCP-compatible server to your agents. This is the most powerful integration option — a single MCP server can expose dozens of tools.

Popular MCP servers provide access to:

See Knowledge & Tools → MCP Servers for setup instructions.

Data isolation

All integrations — HTTP tools, webhooks, and MCP servers — are scoped to your organization. One organization's tools cannot be accessed or triggered by another organization's agents. This is enforced at both the application and database levels.