MCP Server URL
Requirements
Before getting started, make sure you have:
Node.js / npx installed on your device
Your API Key and Client ID
A Desktop MCP Client (e.g. Claude Desktop)
Installing Node.js
Node.js is required to run the MCP Server via npx. Follow the steps below depending on your device.
Windows
Go to: https://nodejs.org
Download the LTS (Recommended) version
Open the downloaded file and follow the installation steps
After installation, open Command Prompt and run:
node -v
If you see a version number, you're good to go ✅
Mac
Go to: https://nodejs.org
Download the LTS (Recommended) version
Open the
.pkgfile and follow the installation stepsAfter installation, open Terminal and run:
node -v
If you see a version number, installation was successful ✅
Getting the API Key and Client ID
⚠️ API Keys have access to all meetings and calls within your workspace, so handle them carefully.
Go to Settings → Integrations → API & Webhooks
Create a new API Key
Copy:
API Key
Client ID
⚠️ Make sure to store the API Key somewhere safe — it is only shown once.
Configuration
Add the following configuration to your MCP Client config file:
"mcpServers": {
"kickscale": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.kickscale.com",
"--header",
"api-key:[YOUR-API-KEY]",
"--header",
"client-id:[YOUR-CLIENT-ID]"
]
}
}Example for Claude Desktop
Open Claude Desktop
Go to Settings → Developer
Click Edit config
Open the
claude_desktop_config.jsonfilePaste the configuration above
Tips & Best Practices
Always double-check your API Key and Client ID for typos
Keep your API Key secure — do not share it publicly
Use the LTS version of Node.js for best compatibility
Troubleshooting
Node command not found
Restart your computer after installing Node.js
Make sure Node.js was installed correctly
Configuration not working
Check for missing commas or brackets in your JSON file
Ensure API Key and Client ID are correctly inserted
