redash mcp for VS Code
io.github.seob717/redash-mcp
Connect Redash to Claude -- query data, manage dashboards, and run SQL with natural language.
client:VS Code
transport:stdio
runtime:npm
Install redash mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "redash-url",
"description": "REDASH_URL",
"password": true
},
{
"type": "promptString",
"id": "redash-api-key",
"description": "REDASH_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "redash-safety-mode",
"description": "REDASH_SAFETY_MODE",
"password": true
},
{
"type": "promptString",
"id": "redash-safety-disable-pii",
"description": "REDASH_SAFETY_DISABLE_PII",
"password": true
},
{
"type": "promptString",
"id": "redash-safety-disable-cost",
"description": "REDASH_SAFETY_DISABLE_COST",
"password": true
}
],
"servers": {
"redash-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"redash-mcp"
],
"env": {
"REDASH_URL": "${input:redash-url}",
"REDASH_API_KEY": "${input:redash-api-key}",
"REDASH_SAFETY_MODE": "${input:redash-safety-mode}",
"REDASH_SAFETY_DISABLE_PII": "${input:redash-safety-disable-pii}",
"REDASH_SAFETY_DISABLE_COST": "${input:redash-safety-disable-cost}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs