Prerequisites
A Luciq account (MCP is available on all plans, no extra setup required)
An MCP-compatible IDE: Cursor, Claude Code, Claude Desktop, VS Code, or any MCP client
Step 1: Find Your MCP Settings
MCP server settings live in your Luciq dashboard under Account Management.
Log in to your Luciq dashboard
Click your profile avatar (top-right corner)
Select Account Management
In the left sidebar, click Luciq MCP
From this page, you can:
View integration settings for each supported MCP client
Generate a personal access token (for token-based auth)
See your current token and authentication status
Step 2: Connect Your IDE
The Luciq MCP page in your dashboard shows setup instructions tailored to each supported client. Select your IDE there to get the exact configuration for your account.
You can also use the server URL directly:
https://api.luciq.ai/api/mcp
Cursor:
Create or edit ~/.cursor/mcp.json with the following configuration:
{
"mcpServers": {
"luciq": {
"url": "https://api.luciq.ai/api/mcp"
}
}
}
Claude Code:
Run the following command in your terminal:
claude mcp add --transport http luciq https://api.luciq.ai/api/mcp
VS Code:
Open Command Palette (Cmd+Shift+P) > MCP: Add Server > select HTTP > paste the server URL:
Claude Desktop:
Copy the configuration below and paste it into your claude_desktop_config.json file:
{
"mcpServers": {
"luciq": {
"url": "https://api.luciq.ai/api/mcp"
}
}
}
Other clients:
Copy the server URL below and add it to your MCP client settings as a remote MCP server:
Your client will initiate a connection and open an OAuth authorization in your browser. Log in via your Luciq account and grant access.
For detailed setup instructions, visit the Setup by IDE page or check the setup guide on your dashboard's Luciq MCP page.
Step 3: Try Your First Query
Once connected, try one of these prompts in your IDE:
"List my applications."
"Show me the top crashes in production this week."
"What are the most common app hangs?"
If you see your apps or crash data, you're connected and ready to go!
