From 98e3aee09626fa6326cb4ca34a9bc4adf5cf2d0c Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 14:25:12 +0000 Subject: [PATCH 1/4] Add Redis MCP server definition Official Redis MCP server for database operations. Execute commands, manage keys, and work with data structures. Uses redis-mcp-server via uvx. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.redis-mcp.json | 79 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 servers/com.redis-mcp.json diff --git a/servers/com.redis-mcp.json b/servers/com.redis-mcp.json new file mode 100644 index 0000000..08577ee --- /dev/null +++ b/servers/com.redis-mcp.json @@ -0,0 +1,79 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.redis-mcp", + "name": "Redis", + "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": "password", + "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 + } +} From c2d9c1abc4f6bbada84f82de823029353d422172 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:10:36 +0800 Subject: [PATCH 2/4] fix: update server definition (input type 'password' -> 'text' for REDIS_PWD) --- servers/com.redis-mcp.json | 29 ++++++++++++++++++----------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/servers/com.redis-mcp.json b/servers/com.redis-mcp.json index 08577ee..4bcf815 100644 --- a/servers/com.redis-mcp.json +++ b/servers/com.redis-mcp.json @@ -6,13 +6,23 @@ "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"], - + "categories": [ + "database" + ], + "tags": [ + "redis", + "cache", + "key-value", + "database", + "in-memory", + "data-structures" + ], "transport": { "type": "stdio", "command": "uvx", - "args": ["redis-mcp-server"], + "args": [ + "redis-mcp-server" + ], "env": { "REDIS_HOST": "${input:REDIS_HOST}", "REDIS_PORT": "${input:REDIS_PORT}", @@ -42,7 +52,7 @@ "id": "REDIS_PWD", "label": "Redis Password", "description": "Password for Redis authentication. Leave empty for local instances without auth.", - "type": "password", + "type": "text", "required": false, "secret": true, "placeholder": "" @@ -50,26 +60,23 @@ ] } }, - "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"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 4d0f8059e8faa85c9ccaaca211e9a19ccda29e6b Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:41 +0800 Subject: [PATCH 3/4] fix: rename server files with transport suffix - com.redis-mcp.json -> com.redis-mcp-uvx.json (id: com.redis-mcp-uvx) Signed-off-by: Mohammod Al Amin Ashik --- servers/{com.redis-mcp.json => com.redis-mcp-uvx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.redis-mcp.json => com.redis-mcp-uvx.json} (97%) diff --git a/servers/com.redis-mcp.json b/servers/com.redis-mcp-uvx.json similarity index 97% rename from servers/com.redis-mcp.json rename to servers/com.redis-mcp-uvx.json index 4bcf815..679b5d1 100644 --- a/servers/com.redis-mcp.json +++ b/servers/com.redis-mcp-uvx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.redis-mcp", - "name": "Redis", + "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", From d3df67ce5b48249d01fa59702696868ae319e026 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:48:33 +0800 Subject: [PATCH 4/4] feat(redis): add Docker variant using mcp/redis image Add Docker transport variant using the official mcp/redis Docker Hub image. Signed-off-by: Mohammod Al Amin Ashik --- servers/com.redis-mcp-docker.json | 89 +++++++++++++++++++++++++++++++ 1 file changed, 89 insertions(+) create mode 100644 servers/com.redis-mcp-docker.json diff --git a/servers/com.redis-mcp-docker.json b/servers/com.redis-mcp-docker.json new file mode 100644 index 0000000..4fe3139 --- /dev/null +++ b/servers/com.redis-mcp-docker.json @@ -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 + } +}