Catalog
Redash MCP
Officialby seob717 · TypeScript
Connect Redash to Claude -- query data, manage dashboards, and run SQL with natural language.
Query data, manage dashboards, and run SQL on Redash with natural language.
Topics
aianthropicbusiness-intelligenceclaudeclaude-aidashboarddata-analyticsllmmcpmcp-servermodel-context-protocolnatural-languageredashsqltext-to-sql
README not available yet.
Install
Configuration
Environment variables
REDASH_URLrequiredYour Redash instance URL (e.g. https://redash.example.com)
REDASH_API_KEYrequiredsecretYour Redash user API key (found in Settings > Account)
REDASH_SAFETY_MODEdefault warnSQL safety mode: 'strict' blocks risky queries, 'warn' (default) returns warnings, 'off' disables guards (not recommended).
REDASH_SAFETY_DISABLE_PIIdefault falseSet to 'true' to disable the PII column guard. Not recommended.
REDASH_SAFETY_DISABLE_COSTdefault falseSet to 'true' to disable the query cost guard. Not recommended.
claude_desktop_config.json
{
"mcpServers": {
"redash-mcp": {
"command": "npx",
"args": [
"-y",
"redash-mcp@3.1.5"
],
"env": {
"REDASH_URL": "<YOUR_REDASH_URL>",
"REDASH_API_KEY": "<YOUR_REDASH_API_KEY>",
"REDASH_SAFETY_MODE": "warn",
"REDASH_SAFETY_DISABLE_PII": "false",
"REDASH_SAFETY_DISABLE_COST": "false"
}
}
}
}