Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
89 changes: 89 additions & 0 deletions servers/com.redis-mcp-docker.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,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
}
}
86 changes: 86 additions & 0 deletions servers/com.redis-mcp-uvx.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.redis-mcp-uvx",
"name": "Redis (uvx)",
"alias": "redis",
"description": "Interact with Redis databases. 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",
"data-structures"
],
"transport": {
"type": "stdio",
"command": "uvx",
"args": [
"redis-mcp-server"
],
"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.",
"type": "text",
"required": true,
"secret": false,
"placeholder": "localhost"
},
{
"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,
"placeholder": ""
}
]
}
},
"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
}
}