Setup Guide
Get the Kula MCP server running with your preferred AI client in a few minutes.
Prerequisites
- Node.js 22+ — Download
- A Kula API key (see Authentication for details)
- A compatible AI client — Claude Desktop, Cursor, or Claude Code
Claude Desktop
Add the following to your Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"kula": {
"command": "npx",
"args": ["-y", "@kula-ai/mcp-server"],
"env": {
"KULA_API_KEY": "your_api_key_here"
}
}
}
}
Restart Claude Desktop after saving.
Cursor
Add the following to .cursor/mcp.json in your project root:
{
"mcpServers": {
"kula": {
"command": "npx",
"args": ["-y", "@kula-ai/mcp-server"],
"env": {
"KULA_API_KEY": "your_api_key_here"
}
}
}
}
Claude Code CLI
Run this command in your terminal:
claude mcp add kula -- npx -y @kula-ai/mcp-server
Then set your API key:
export KULA_API_KEY="your_api_key_here"
Getting Your API Key
- Log in to Kula
- Navigate to Settings > API
- Click Generate API Key
- Copy the key and add it to your MCP configuration
See Authentication for more details on API key management.