Skip to content

Commit a3cefd9

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for REDIS_PWD)
1 parent fddf1d1 commit a3cefd9

1 file changed

Lines changed: 18 additions & 11 deletions

File tree

servers/com.redis-mcp.json

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,23 @@
66
"description": "Interact with Redis databases. Execute commands, manage keys, and work with data structures across standalone, cluster, and Sentinel modes.",
77
"icon": "https://avatars.githubusercontent.com/u/1529926?v=4",
88
"schema_version": "2.1",
9-
"categories": ["database"],
10-
"tags": ["redis", "cache", "key-value", "database", "in-memory", "data-structures"],
11-
9+
"categories": [
10+
"database"
11+
],
12+
"tags": [
13+
"redis",
14+
"cache",
15+
"key-value",
16+
"database",
17+
"in-memory",
18+
"data-structures"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "uvx",
15-
"args": ["redis-mcp-server"],
23+
"args": [
24+
"redis-mcp-server"
25+
],
1626
"env": {
1727
"REDIS_HOST": "${input:REDIS_HOST}",
1828
"REDIS_PORT": "${input:REDIS_PORT}",
@@ -42,34 +52,31 @@
4252
"id": "REDIS_PWD",
4353
"label": "Redis Password",
4454
"description": "Password for Redis authentication. Leave empty for local instances without auth.",
45-
"type": "password",
55+
"type": "text",
4656
"required": false,
4757
"secret": true,
4858
"placeholder": ""
4959
}
5060
]
5161
}
5262
},
53-
5463
"auth": {
5564
"type": "optional_api_key",
5665
"instructions": "Provide Redis connection details. Password is optional for local instances."
5766
},
58-
5967
"contributor": {
6068
"name": "Redis",
6169
"github": "redis",
6270
"url": "https://redis.io"
6371
},
64-
6572
"links": {
6673
"repository": "https://github.com/redis/mcp-redis",
6774
"homepage": "https://redis.io",
6875
"documentation": "https://github.com/redis/mcp-redis#readme"
6976
},
70-
71-
"platforms": ["all"],
72-
77+
"platforms": [
78+
"all"
79+
],
7380
"capabilities": {
7481
"tools": true,
7582
"resources": false,

0 commit comments

Comments
 (0)