User Documentation
User Documentation
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
Simple Connector
If you have a paid plan for Claude, ChatGPT, or Perplexity, use this simple connector URL.
https://mcp.axana.ai/<YOUR-API-KEY>
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
{
"servers": {
"axana-mcp-server": {
"url": "https://mcp.axana.ai/ "
}
}
}
Add the snippet below to .cursor/mcp.json
Configuration
{
"mcpServers": {
"axana-mcp-server": {
"url": "https://mcp.axana.ai/ "
}
}
}
Run this command in your terminal
Configuration
claude mcp add axana-mcp-server \
-t http https://mcp.axana.ai/
Copy the snippet below into claude_desktop_config.json
Configuration
{
"mcpServers": {
"axana": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.axana.ai/ "
]
}
}
}
Add the snippet below to ~/.lmstudio/mcp.json
Configuration
{
"mcpServers": {
"axana-mcp-server": {
"url": "https://mcp.axana.ai/ "
}
}
}