This server allows you to manage and interact with your Upstash Redis databases using natural language via the Model Context Protocol (MCP).
You can:
Create and manage databases: Create new databases, delete databases, list existing ones, and update database regions
Retrieve information: Get detailed database information and usage statistics (command count, bandwidth, latency, keyspace, throughput, disk usage)
Manage backups: Create, delete, restore, and list backups, plus enable/disable daily backups
Execute commands: Run single or multiple Redis commands directly on a database
Utility functions: Convert timestamps to human-readable dates
Allows interaction with Redis databases, including creating new databases, running Redis commands, listing databases, managing backups, and viewing usage statistics.
Integrates with Upstash Developer API to manage Upstash resources through natural language commands, such as creating databases, listing resources, running commands, and viewing metrics.
Upstash MCP Server
Model Context Protocol (MCP) is a new, standardized protocol for managing context between large language models (LLMs) and external systems. In this repository, we provide an installer as well as an MCP Server for Upstash Developer API's.
This allows you to use any MCP Client to interact with your Upstash account using natural language, e.g.:
"Create a new Redis database in us-east-1"
"List my databases"
"List keys starting with "user:" in users-db"
"Create a backup"
"Give me the spikes in throughput during the last 7 days"
Usage
Quick Setup
First, get your Upstash credentials:
Email: Your Upstash account email
API Key: Get it from Upstash Console → Account → API Keys
Add this to your MCP client configuration:
Streamable HTTP Transport (for web applications):
Start your MCP server with the http transport:
And configure your MCP client to use the HTTP transport:
Create a Dockerfile:
FROM node:18-alpine WORKDIR /app # Install the latest version globally RUN npm install -g @upstash/mcp-server # Expose default port if needed (optional, depends on MCP client interaction) # EXPOSE 3000 # Default command to run the server CMD ["upstash-mcp-server"]Then, build the image using a tag (e.g.,
upstash-mcp). Make sure Docker Desktop (or the Docker daemon) is running. Run the following command in the same directory where you saved theDockerfile:docker build -t upstash-mcp .Configure Your MCP Client:
Update your MCP client's configuration to use the Docker command.
Example for a claude_desktop_config.json:
{ "mcpServers": { "upstash": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "UPSTASH_EMAIL=YOUR_EMAIL", "-e", "UPSTASH_API_KEY=YOUR_API_KEY", "upstash-mcp" ] } } }Note: This is an example configuration. Please refer to the specific examples for your MCP client (like Cursor, VS Code, etc.) earlier in this README to adapt the structure (e.g.,
Related MCP server: Memex
Requirements
Node.js >= v18.0.0
Upstash API key - You can create one from here.
Troubleshooting
Common Issues
Your mcp client might have trouble finding the right binaries because of the differences between your shell and system PATH.
To fix this, you can get the full path of the binaries by running which npx or which docker in your shell, and replace the npx or docker command in the MCP config with the full binary path.
Node Version Manager
If you are using a node version manager like nvm or fnm, please check this issue. You should change the node command in the MCP config to the absolute path of the node binary.
Additional Troubleshooting
See the troubleshooting guide in the MCP documentation. You can also reach out to us at Discord.
Tools
Redis
redis_database_create_backupredis_database_create_newredis_database_deleteredis_database_delete_backupredis_database_get_detailsredis_database_list_backupsredis_database_list_databasesredis_database_reset_passwordredis_database_restore_backupredis_database_run_multiple_redis_commandsredis_database_run_single_redis_commandredis_database_set_daily_backupredis_database_update_regionsredis_database_get_usage_last_5_daysredis_database_get_stats
Development
Clone the project and run:
This will continuously build the project and watch for changes.
For testing, you can create a .env file in the same directory as the project with the following content:
This will be used for setting the Claude config.
Testing with Claude Desktop
To install the Claude Desktop config for local development, add the following to your Claude Desktop MCP config:
NOTE: The same issue with node version manager applies here. Please look at the note in the usage section if you are using a node version manager.
You can now use Claude Desktop to run Upstash commands.
To view the logs from the MCP Server in real time, run the following command: