Skip to content

Commit 71a4851

Browse files
authored
feat: add Upstash MCP server definition (#80)
* Add Upstash MCP server definition Official Upstash MCP server for Redis database management. Create databases, manage backups, and view usage stats. Uses @upstash/mcp-server npm package. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for UPSTASH_API_KEY) * fix: rename server files with transport suffix - com.upstash-mcp.json -> com.upstash-mcp-npx.json (id: com.upstash-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 2654811 commit 71a4851

1 file changed

Lines changed: 88 additions & 0 deletions

File tree

servers/com.upstash-mcp-npx.json

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.upstash-mcp-npx",
4+
"name": "Upstash (npx)",
5+
"alias": "upstash",
6+
"description": "Create and manage Upstash Redis databases. List databases, create backups, view usage stats, and manage credentials.",
7+
"icon": "https://avatars.githubusercontent.com/u/74989412?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"database",
11+
"cloud"
12+
],
13+
"tags": [
14+
"upstash",
15+
"redis",
16+
"serverless",
17+
"database",
18+
"cache",
19+
"cloud"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@upstash/mcp-server@latest",
27+
"--email",
28+
"${input:UPSTASH_EMAIL}",
29+
"--api-key",
30+
"${input:UPSTASH_API_KEY}"
31+
],
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "UPSTASH_EMAIL",
36+
"label": "Upstash Email",
37+
"description": "Email address associated with your Upstash account.",
38+
"type": "text",
39+
"required": true,
40+
"secret": false,
41+
"placeholder": "you@example.com",
42+
"obtain": {
43+
"url": "https://console.upstash.com",
44+
"instructions": "Use the email address you registered with at console.upstash.com",
45+
"button_label": "Open Console"
46+
}
47+
},
48+
{
49+
"id": "UPSTASH_API_KEY",
50+
"label": "Upstash API Key",
51+
"description": "Developer API key for the Upstash management API.",
52+
"type": "text",
53+
"required": true,
54+
"secret": true,
55+
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
56+
"obtain": {
57+
"url": "https://console.upstash.com/account/api",
58+
"instructions": "1. Go to console.upstash.com/account/api\n2. Copy your Management API key",
59+
"button_label": "Get API Key"
60+
}
61+
}
62+
]
63+
}
64+
},
65+
"auth": {
66+
"type": "api_key",
67+
"instructions": "Get your email and API key from https://console.upstash.com/account/api"
68+
},
69+
"contributor": {
70+
"name": "Upstash",
71+
"github": "upstash",
72+
"url": "https://upstash.com"
73+
},
74+
"links": {
75+
"repository": "https://github.com/upstash/mcp-server",
76+
"homepage": "https://upstash.com",
77+
"documentation": "https://upstash.com/docs/redis/integrations/mcp"
78+
},
79+
"platforms": [
80+
"all"
81+
],
82+
"capabilities": {
83+
"tools": true,
84+
"resources": false,
85+
"prompts": false,
86+
"read_only_mode": false
87+
}
88+
}

0 commit comments

Comments
 (0)