MCP Server
Active
MIT
io.github.upstash/mcp-server MCP Server
io.github.upstash/mcp-server
What is the io.github.upstash/mcp-server MCP server?
Manage Upstash databases and resources through the Upstash Developer API.
How to install io.github.upstash/mcp-server
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
UPSTASH_EMAILrequiredEmail address of your Upstash account.
UPSTASH_API_KEYrequiredsecretUpstash Developer API key (create one at https://console.upstash.com/account/api).
UPSTASH_BOX_API_KEYsecretUpstash Box API key for Box-related tools.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@upstash/mcp-server"
],
"env": {
"UPSTASH_EMAIL": "<YOUR_UPSTASH_EMAIL>",
"UPSTASH_API_KEY": "<YOUR_UPSTASH_API_KEY>",
"UPSTASH_BOX_API_KEY": "<YOUR_UPSTASH_BOX_API_KEY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@upstash/mcp-server"
],
"env": {
"UPSTASH_EMAIL": "<YOUR_UPSTASH_EMAIL>",
"UPSTASH_API_KEY": "<YOUR_UPSTASH_API_KEY>",
"UPSTASH_BOX_API_KEY": "<YOUR_UPSTASH_BOX_API_KEY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@upstash/mcp-server"
],
"env": {
"UPSTASH_EMAIL": "<YOUR_UPSTASH_EMAIL>",
"UPSTASH_API_KEY": "<YOUR_UPSTASH_API_KEY>",
"UPSTASH_BOX_API_KEY": "<YOUR_UPSTASH_BOX_API_KEY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@upstash/mcp-server"
],
"env": {
"UPSTASH_EMAIL": "<YOUR_UPSTASH_EMAIL>",
"UPSTASH_API_KEY": "<YOUR_UPSTASH_API_KEY>",
"UPSTASH_BOX_API_KEY": "<YOUR_UPSTASH_BOX_API_KEY>"
}
}
}
}Claude Code
claude mcp add mcp-server --env UPSTASH_EMAIL=<YOUR_UPSTASH_EMAIL> --env UPSTASH_API_KEY=<YOUR_UPSTASH_API_KEY> --env UPSTASH_BOX_API_KEY=<YOUR_UPSTASH_BOX_API_KEY> -- npx -y @upstash/mcp-serverRelated MCP servers
io.github.upstash/redis-mcp
Maintained
Run Redis commands and look up Upstash Redis Search docs against Upstash Redis over HTTP or TCP.
0
View repository →TypeScript
MIT