-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.redis-mcp-docker.json
More file actions
89 lines (89 loc) · 2.33 KB
/
Copy pathcom.redis-mcp-docker.json
File metadata and controls
89 lines (89 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.redis-mcp-docker",
"name": "Redis (Docker)",
"alias": "redis-docker",
"description": "Interact with Redis databases via Docker. Execute commands, manage keys, and work with data structures across standalone, cluster, and Sentinel modes.",
"icon": "https://avatars.githubusercontent.com/u/1529926?v=4",
"schema_version": "2.1",
"categories": [
"database"
],
"tags": [
"redis",
"cache",
"key-value",
"database",
"in-memory",
"docker"
],
"transport": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "REDIS_HOST",
"-e", "REDIS_PORT",
"-e", "REDIS_PWD",
"mcp/redis"
],
"env": {
"REDIS_HOST": "${input:REDIS_HOST}",
"REDIS_PORT": "${input:REDIS_PORT}",
"REDIS_PWD": "${input:REDIS_PWD}"
},
"metadata": {
"inputs": [
{
"id": "REDIS_HOST",
"label": "Redis Host",
"description": "Hostname or IP of your Redis instance. Use host.docker.internal for local Redis.",
"type": "text",
"required": true,
"secret": false,
"placeholder": "host.docker.internal"
},
{
"id": "REDIS_PORT",
"label": "Redis Port",
"description": "Port of your Redis instance.",
"type": "text",
"required": false,
"secret": false,
"placeholder": "6379"
},
{
"id": "REDIS_PWD",
"label": "Redis Password",
"description": "Password for Redis authentication. Leave empty for local instances without auth.",
"type": "text",
"required": false,
"secret": true
}
]
}
},
"auth": {
"type": "optional_api_key",
"instructions": "Provide Redis connection details. Password is optional for local instances."
},
"contributor": {
"name": "Redis",
"github": "redis",
"url": "https://redis.io"
},
"links": {
"repository": "https://github.com/redis/mcp-redis",
"homepage": "https://redis.io",
"documentation": "https://github.com/redis/mcp-redis#readme"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}