Claude Desktop MCP Setup for Ask RITA¶
This guide shows how to add Ask RITA as an MCP server to Claude Desktop.
Quick Setup¶
Add this to your Claude Desktop MCP configuration:
{
"mcpServers": {
"askrita": {
"command": "askrita",
"args": [
"mcp",
"--config",
"/path/to/your/askrita-config.yaml"
]
}
}
}
Complete Example¶
-
Create your config file at
/path/to/askrita-config.yaml: -
Add to Claude Desktop config:
-
Restart Claude Desktop
Available Tools¶
Once configured, Claude can use these tools:
- askrita_query: Ask natural language questions about your database
- askrita_test: Test your Ask RITA configuration
Example Usage in Claude¶
After setup, you can ask Claude:
"Use the askrita_query tool to find the top 10 customers by revenue"
Claude will call:
{
"tool": "askrita_query",
"arguments": {
"question": "What are the top 10 customers by revenue?",
"format": "json"
}
}
Troubleshooting¶
If the MCP server doesn't start:
-
Check the command path:
-
Test the config:
-
Check Claude Desktop logs for MCP connection errors
Configuration File Location¶
On macOS, Claude Desktop's config is usually at:
That's it! Simple as adding a JSON config entry.