Upstash MCP Server

Official
startCommand: type: stdio configSchema: { "type": "object", "properties": { "email": { "type": "string", "description": "Your Upstash email address" }, "token": { "type": "string", "description": "Your Upstash management API key" } }, "required": ["email", "token"], "additionalProperties": false } commandFunction: |- (config) => ({ "command": "npx", "args": [ "-y", "@upstash/mcp-server", "run", config.email, config.token ] })