Skip to Content

User Documentation

User Documentation

Connect MCP Server

Use Axana With MCP

The Axana MCP (Model Context Protocol) server allows you to integrate Axana agents directly into compatible AI development environments. This enables seamless interaction with your agents through supported tools and platforms.

Step 1: Get Your API Key

Get your API key at https://axana.ai/my/api-keys (Full API key documentation)

Step 2: Paste Your API Key

Paste your API key below to personalize all configuration URLs on this page:

Step 3: Choose Your Setup Method

Advanced Setup (IDE/Development Tools)

For development environments like VSCode, Cursor, or Claude Desktop, select your tool below for detailed configuration:

Add the snippet below to .vscode/mcp.json

Configuration
Docs
{
  "servers": {
    "axana-mcp-server": {
      "url": "https://mcp.axana.ai/"
    }
  }
}

Add the snippet below to .cursor/mcp.json

Configuration
Docs
{
  "mcpServers": {
    "axana-mcp-server": {
      "url": "https://mcp.axana.ai/"
    }
  }
}

Run this command in your terminal

Configuration
Docs
claude mcp add axana-mcp-server \
  -t http https://mcp.axana.ai/

Copy the snippet below into claude_desktop_config.json

Configuration
Docs
{
  "mcpServers": {
    "axana": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.axana.ai/"
      ]
    }
  }
}

Add the snippet below to ~/.lmstudio/mcp.json

Configuration
Docs
{
  "mcpServers": {
    "axana-mcp-server": {
      "url": "https://mcp.axana.ai/"
    }
  }
}