MCP Server
Maintained
MIT
io.github.upstash/redis-mcp MCP Server
io.github.upstash/redis-mcp
What is the io.github.upstash/redis-mcp MCP server?
Run Redis commands and look up Upstash Redis Search docs against Upstash Redis over HTTP or TCP.
How to install io.github.upstash/redis-mcp
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
UPSTASH_REDIS_REST_URLUpstash Redis REST URL (HTTP transport).
UPSTASH_REDIS_REST_TOKENsecretUpstash Redis REST token (HTTP transport).
UPSTASH_REDIS_TCP_URLsecretUpstash Redis rediss:// connection string (TCP transport).
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"redis-mcp": {
"command": "npx",
"args": [
"-y",
"@upstash/redis-mcp"
],
"env": {
"UPSTASH_REDIS_REST_URL": "<YOUR_UPSTASH_REDIS_REST_URL>",
"UPSTASH_REDIS_REST_TOKEN": "<YOUR_UPSTASH_REDIS_REST_TOKEN>",
"UPSTASH_REDIS_TCP_URL": "<YOUR_UPSTASH_REDIS_TCP_URL>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"redis-mcp": {
"command": "npx",
"args": [
"-y",
"@upstash/redis-mcp"
],
"env": {
"UPSTASH_REDIS_REST_URL": "<YOUR_UPSTASH_REDIS_REST_URL>",
"UPSTASH_REDIS_REST_TOKEN": "<YOUR_UPSTASH_REDIS_REST_TOKEN>",
"UPSTASH_REDIS_TCP_URL": "<YOUR_UPSTASH_REDIS_TCP_URL>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"redis-mcp": {
"command": "npx",
"args": [
"-y",
"@upstash/redis-mcp"
],
"env": {
"UPSTASH_REDIS_REST_URL": "<YOUR_UPSTASH_REDIS_REST_URL>",
"UPSTASH_REDIS_REST_TOKEN": "<YOUR_UPSTASH_REDIS_REST_TOKEN>",
"UPSTASH_REDIS_TCP_URL": "<YOUR_UPSTASH_REDIS_TCP_URL>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"redis-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@upstash/redis-mcp"
],
"env": {
"UPSTASH_REDIS_REST_URL": "<YOUR_UPSTASH_REDIS_REST_URL>",
"UPSTASH_REDIS_REST_TOKEN": "<YOUR_UPSTASH_REDIS_REST_TOKEN>",
"UPSTASH_REDIS_TCP_URL": "<YOUR_UPSTASH_REDIS_TCP_URL>"
}
}
}
}Claude Code
claude mcp add redis-mcp --env UPSTASH_REDIS_REST_URL=<YOUR_UPSTASH_REDIS_REST_URL> --env UPSTASH_REDIS_REST_TOKEN=<YOUR_UPSTASH_REDIS_REST_TOKEN> --env UPSTASH_REDIS_TCP_URL=<YOUR_UPSTASH_REDIS_TCP_URL> -- npx -y @upstash/redis-mcpRelated MCP servers
Manage Upstash databases and resources through the Upstash Developer API.
57
View repository →TypeScript
MIT