Skip to content

Commit 08df63d

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for UPSTASH_API_KEY)
1 parent 0ec2ada commit 08df63d

1 file changed

Lines changed: 24 additions & 11 deletions

File tree

servers/com.upstash-mcp.json

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,29 @@
66
"description": "Create and manage Upstash Redis databases. List databases, create backups, view usage stats, and manage credentials.",
77
"icon": "https://avatars.githubusercontent.com/u/74989412?v=4",
88
"schema_version": "2.1",
9-
"categories": ["database", "cloud"],
10-
"tags": ["upstash", "redis", "serverless", "database", "cache", "cloud"],
11-
9+
"categories": [
10+
"database",
11+
"cloud"
12+
],
13+
"tags": [
14+
"upstash",
15+
"redis",
16+
"serverless",
17+
"database",
18+
"cache",
19+
"cloud"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "@upstash/mcp-server@latest", "--email", "${input:UPSTASH_EMAIL}", "--api-key", "${input:UPSTASH_API_KEY}"],
24+
"args": [
25+
"-y",
26+
"@upstash/mcp-server@latest",
27+
"--email",
28+
"${input:UPSTASH_EMAIL}",
29+
"--api-key",
30+
"${input:UPSTASH_API_KEY}"
31+
],
1632
"metadata": {
1733
"inputs": [
1834
{
@@ -33,7 +49,7 @@
3349
"id": "UPSTASH_API_KEY",
3450
"label": "Upstash API Key",
3551
"description": "Developer API key for the Upstash management API.",
36-
"type": "password",
52+
"type": "text",
3753
"required": true,
3854
"secret": true,
3955
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
@@ -46,26 +62,23 @@
4662
]
4763
}
4864
},
49-
5065
"auth": {
5166
"type": "api_key",
5267
"instructions": "Get your email and API key from https://console.upstash.com/account/api"
5368
},
54-
5569
"contributor": {
5670
"name": "Upstash",
5771
"github": "upstash",
5872
"url": "https://upstash.com"
5973
},
60-
6174
"links": {
6275
"repository": "https://github.com/upstash/mcp-server",
6376
"homepage": "https://upstash.com",
6477
"documentation": "https://upstash.com/docs/redis/integrations/mcp"
6578
},
66-
67-
"platforms": ["all"],
68-
79+
"platforms": [
80+
"all"
81+
],
6982
"capabilities": {
7083
"tools": true,
7184
"resources": false,

0 commit comments

Comments
 (0)