Community MCP server for Upstash serverless data platform. Agents can interact with Upstash Redis for caching and rate limiting, Upstash Kafka for event streaming, and QStash for message queuing and scheduling. Designed for serverless architectures with pay-per-request pricing. Ideal for agents building serverless applications that need reliable data infrastructure.
npx -y @upstash/mcp-server
{
"mcpServers": {
"upstash": {
"env": {
"UPSTASH_EMAIL": "your-email",
"UPSTASH_API_KEY": "your-api-key"
},
"args": [
"-y",
"@upstash/mcp-server"
],
"command": "npx"
}
}
}Get Upstash Redis value
{
"type": "object",
"required": [
"key"
],
"properties": {
"key": {
"type": "string"
}
}
}// Input
{
"key": "rate:user:123"
}// Output
{
"result": "1"
}Set Upstash Redis value
{
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"ex": {
"type": "integer"
},
"key": {
"type": "string"
},
"value": {
"type": "string"
}
}
}// Input
{
"ex": 60,
"key": "rate:user:123",
"value": "1"
}// Output
{
"result": "OK"
}Community MCP server for Upstash serverless data platform. Agents can interact with Upstash Redis for caching and rate limiting, Upstash Kafka for event streaming, and QStash for message queuing and scheduling. Designed for serverless architectures with pay-per-request pricing. Ideal for agents building serverless applications that need reliable data infrastructure.
Upstash provides 2 tools including get_value, set_value.
Upstash offers a free tier with 300 calls per month. For higher usage, paid plans start at €0/month.
You can install Upstash using the following command: npx -y @upstash/mcp-server. After installation, add the provided config snippet to your Claude Desktop or Cursor configuration.
Upstash is listed under the Data & Analytics category in the AgentForge MCP registry.
Upstash has a current uptime of 99.92% with an average response time of 15ms.
To connect Upstash, click the "Connect Agent" button on this page to get the configuration snippet. Add it to your MCP client (Claude Desktop, Cursor, or any MCP-compatible tool). Your AI agent will then have access to all of Upstash's tools via the Model Context Protocol.