Claude Desktop
Set up Claude Desktop to use Sazabi's MCP server for observability queries and debugging.
Claude Desktop is Anthropic's native desktop application for Claude. By connecting Claude Desktop to Sazabi's MCP server, you can have natural conversations about your production systems.
About Claude Desktop
Claude Desktop provides a dedicated application for interacting with Claude outside the browser. With MCP support, Claude Desktop can connect to external services like Sazabi, giving you conversational access to your observability data.
Prerequisites
Before configuring Claude Desktop to use Sazabi, make sure you have:
- Claude Desktop installed: Download from claude.ai/download.
- A Sazabi secret key: Create one in Settings -> API Keys in the Sazabi dashboard. Select Secret as the key type.
Configuration
Claude Desktop uses MCP servers defined in its configuration file.
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"sazabi": {
"type": "http",
"url": "https://mcp.sazabi.com/mcp",
"headers": {
"X-Sazabi-Secret-Key": "<YOUR_SECRET_KEY>"
}
}
}
}Edit %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"sazabi": {
"type": "http",
"url": "https://mcp.sazabi.com/mcp",
"headers": {
"X-Sazabi-Secret-Key": "<YOUR_SECRET_KEY>"
}
}
}
}Replace <YOUR_SECRET_KEY> with your actual Sazabi secret key.
Keep your secret key secure. Do not share configuration files containing secret keys.
Verifying the connection
After configuring Claude Desktop:
- Restart Claude Desktop completely.
- Start a new conversation.
- Ask Claude to use Sazabi:
Use Sazabi to list my projectsIf configured correctly, Claude will use Sazabi's MCP tools to fetch your project information.
Using Sazabi tools
Once connected, you can ask Claude Desktop to query your observability data:
Ask Sazabi what errors occurred in the last hour
Use Sazabi to investigate the recent latency spike
Search Sazabi for logs mentioning "database connection"Troubleshooting
MCP server not appearing
If Sazabi does not appear as an available MCP server:
- Verify the configuration file exists at the correct path.
- Ensure the JSON is valid.
- Completely quit and restart Claude Desktop.
Connection errors
If you see connection errors:
- Verify your secret key is correct and has not been revoked.
- Check that the URL is exactly
https://mcp.sazabi.com/mcp. - Ensure your network can reach
mcp.sazabi.com.