- Explore MCP Servers
- redash-mcp
Redash Mcp
What is Redash Mcp
Redash MCP is a Model Context Protocol server designed to integrate Redash with AI assistants like Claude, enabling seamless interaction with data visualizations and queries.
Use cases
Use cases include automating data retrieval from Redash for reporting, integrating data queries into AI-driven applications, and enhancing user interaction with data through AI assistants.
How to use
To use Redash MCP, clone the repository, install dependencies, configure your Redash instance in a .env file, build the project, and start the server. Additionally, configure it in the Claude for Desktop configuration file for integration.
Key features
Key features include connecting to Redash instances via API, listing available queries and dashboards, executing queries, managing queries (create, update, archive), listing data sources, and retrieving dashboard details and visualizations.
Where to use
Redash MCP can be used in data analysis, business intelligence, and any field that requires integration of data visualization tools with AI assistants for enhanced data accessibility and insights.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Overview
What is Redash Mcp
Redash MCP is a Model Context Protocol server designed to integrate Redash with AI assistants like Claude, enabling seamless interaction with data visualizations and queries.
Use cases
Use cases include automating data retrieval from Redash for reporting, integrating data queries into AI-driven applications, and enhancing user interaction with data through AI assistants.
How to use
To use Redash MCP, clone the repository, install dependencies, configure your Redash instance in a .env file, build the project, and start the server. Additionally, configure it in the Claude for Desktop configuration file for integration.
Key features
Key features include connecting to Redash instances via API, listing available queries and dashboards, executing queries, managing queries (create, update, archive), listing data sources, and retrieving dashboard details and visualizations.
Where to use
Redash MCP can be used in data analysis, business intelligence, and any field that requires integration of data visualization tools with AI assistants for enhanced data accessibility and insights.
Clients Supporting MCP
The following are the main client software that supports the Model Context Protocol. Click the link to visit the official website for more information.
Content
Redash MCP Server
Model Context Protocol (MCP) server for integrating Redash with AI assistants like Claude.
Features
- Connect to Redash instances via the Redash API
- List available queries and dashboards as resources
- Execute queries and retrieve results
- Create and manage queries (create, update, archive)
- List data sources for query creation
- Get dashboard details and visualizations
Prerequisites
- Node.js (v18 or later)
- npm or yarn
- Access to a Redash instance
- Redash API key
Environment Variables
The server requires the following environment variables:
REDASH_URL: Your Redash instance URL (e.g., https://redash.example.com)REDASH_API_KEY: Your Redash API key
Optional variables:
REDASH_TIMEOUT: Timeout for API requests in milliseconds (default: 30000)REDASH_MAX_RESULTS: Maximum number of results to return (default: 1000)
Installation
-
Clone this repository:
git clone https://github.com/suthio/redash-mcp.git cd redash-mcp -
Install dependencies:
npm install -
Create a
.envfile with your Redash configuration:REDASH_URL=https://your-redash-instance.com REDASH_API_KEY=your_api_key -
Build the project:
npm run build -
Start the server:
npm start
Usage with Claude for Desktop
To use this MCP server with Claude for Desktop, configure it in your Claude for Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add the following configuration (edit paths as needed):
{
"mcpServers": {
"redash": {
"command": "npx",
"args": [
"-y",
"@suthio/redash-mcp"
],
"env": {
"REDASH_API_KEY": "your-api-key",
"REDASH_URL": "https://your-redash-instance.com"
}
}
}
}
Available Tools
Query Management
list-queries: List all available queries in Redashget-query: Get details of a specific querycreate-query: Create a new query in Redashupdate-query: Update an existing query in Redasharchive-query: Archive (soft-delete) a querylist-data-sources: List all available data sources
Query Execution
execute-query: Execute a query and return results
Dashboard Management
list-dashboards: List all available dashboardsget-dashboard: Get dashboard details and visualizationsget-visualization: Get details of a specific visualization
Development
Run in development mode:
npm run dev
Version History
- v1.1.0: Added query management functionality (create, update, archive)
- v1.0.0: Initial release
License
MIT
Dev Tools Supporting MCP
The following are the main code editors that support the Model Context Protocol. Click the link to visit the official website for more information.










