Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.delphina.ai/llms.txt

Use this file to discover all available pages before exploring further.

This feature is in beta. GA is coming soon.
The Delphina MCP server lets you call Delphina’s analytics agent from any MCP-compatible client — including Claude Code, Cursor, and custom agents you build. Ask data questions directly from your development environment, or integrate Delphina into automated workflows.

How it works

Delphina exposes an MCP server using the Streamable HTTP transport. MCP clients connect to it and gain access to tools for starting chats, sending messages, and retrieving results — the same capabilities available through the web app and Slack. To get started, add the Delphina MCP server to your client’s configuration:
{
  "mcpServers": {
    "delphina": {
      "type": "url",
      "url": "https://analytics.delphina.ai/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_TOKEN"
      }
    }
  }
}
For Claude Code, add this to your project or user settings. For Cursor, add it to .cursor/mcp.json. Any MCP-compatible client can use the same configuration. To obtain an API token, go to Org Admin > API Tokens or contact the Delphina team. Keep your token secure — do not commit it to source control.