MCP Integration

MCP Integration

The Model Context Protocol (MCP) allows AI assistants to interact directly with your Kayse AI data.

What is MCP?

MCP is an open protocol that enables AI assistants to connect to external data sources and tools. With Kayse AI's MCP server, AI assistants can:

Supported AI Assistants

MCP works with any MCP-compatible AI assistant, including:

Setup Guide

1. Get Your API Key

Generate an API key from your Company Settings under "API Keys". This key will authenticate the MCP connection.

Security

Keep your API key secure. Do not share it publicly or commit it to version control.

2. Configure Your AI Assistant

Claude Desktop

Add the Kayse AI MCP server to your Claude Desktop configuration:

  1. Open your Claude Desktop configuration file:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
  2. Add the Kayse AI MCP server:

json
{
  "mcpServers": {
    "kayse": {
      "url": "https://public-api.kayse.ai/v1/mcp",
      "headers": {
        "Authorization": "Bearer your_api_key_here"
      }
    }
  }
}
  1. Replace your_api_key_here with your actual API key
  2. Restart Claude Desktop

Cursor

Add the Kayse AI MCP server to your Cursor configuration (.cursor/mcp.json in your project or global settings):

json
{
  "mcpServers": {
    "kayse": {
      "url": "https://public-api.kayse.ai/v1/mcp",
      "headers": {
        "Authorization": "Bearer your_api_key_here"
      }
    }
  }
}

3. Start Using MCP

Once configured, you can ask your AI assistant natural language questions about your Kayse AI data:

Available Operations

Cases

Clients

Case Lists

Forms, Campaigns, Calls, and Tasks

Notes

Configuration and Admin Data

Current MCP Safety Boundary

Permissions

The MCP server uses the same permissions as your API key. If your API key can access cases, clients, webhooks, case types, or other MCP-supported resources, your AI assistant will have that same level of access.

Good First Prompts

Troubleshooting

Connection Issues

Permission Errors

Learn More