Setup
Connect your MCP client to AIclicks with an API key.
Pick your client below. Every flow needs an AIclicks API key — grab one from Settings → Developers in your dashboard.
The server is hosted at https://mcp.aiclicks.io/mcp and speaks streamable HTTP. Auth is a bearer token on every request — the same ak_live_* key as the REST API.
Claude Desktop connects via the mcp-remote proxy. Requires npx (ships with Node.js — install LTS if missing).
Get your API key
In your AIclicks dashboard, go to Settings → Developers, click Create API Key, and copy it.
Open your config file
In Claude Desktop, go to Settings → Developer → Edit Config. This opens claude_desktop_config.json. You can also find it at:
-
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json -
Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add the AIclicks server
Add the "aiclicks" entry inside "mcpServers" (create the key if it doesn't exist):
{
"mcpServers": {
"aiclicks": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.aiclicks.io/mcp",
"--header",
"Authorization: Bearer YOUR_API_KEY"
]
}
}
}
Replace YOUR_API_KEY with the key from step 1.
Restart Claude Desktop
Quit and reopen Claude Desktop to apply the new configuration.
Get your API key
In your AIclicks dashboard, go to Settings → Developers, click Create API Key, and copy it.
Add the server
claude mcp add --transport http aiclicks https://mcp.aiclicks.io/mcp \
--header "Authorization: Bearer YOUR_API_KEY"
Replace YOUR_API_KEY with the key from step 1.
Verify
claude mcp list
The aiclicks server should show as Connected.
Get your API key
In your AIclicks dashboard, go to Settings → Developers, click Create API Key, and copy it.
Add the config
Add to .cursor/mcp.json (per-project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"aiclicks": {
"url": "https://mcp.aiclicks.io/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}
Replace YOUR_API_KEY with the key from step 1.
Verify
Open Cursor's MCP settings panel. The aiclicks server should show as Connected with its tool list visible.
Any MCP-compatible client can connect using:
URL: https://mcp.aiclicks.io/mcp
Transport: Streamable HTTP
Authorization: Bearer YOUR_API_KEY
If your client doesn't support remote HTTP servers, use the mcp-remote proxy:
{
"mcpServers": {
"aiclicks": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.aiclicks.io/mcp",
"--header",
"Authorization: Bearer YOUR_API_KEY"
]
}
}
}
Start using it
Once connected, ask your AI assistant questions like:
-
"How visible is my brand in AI search results?"
-
"Which sources are LLMs citing when they mention us?"
-
"Compare our AI visibility against competitors."
-
"Which prompts are winning or losing visibility?"
-
"Which model surfaces my brand the most — ChatGPT or Claude?"
See Tools for the full tool reference, or Troubleshooting if a connection or call isn't working.