|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.redis-mcp", |
| 4 | + "name": "Redis", |
| 5 | + "alias": "redis", |
| 6 | + "description": "Interact with Redis databases. Execute commands, manage keys, and work with data structures across standalone, cluster, and Sentinel modes.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/1529926?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["database"], |
| 10 | + "tags": ["redis", "cache", "key-value", "database", "in-memory", "data-structures"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "uvx", |
| 15 | + "args": ["redis-mcp-server"], |
| 16 | + "env": { |
| 17 | + "REDIS_HOST": "${input:REDIS_HOST}", |
| 18 | + "REDIS_PORT": "${input:REDIS_PORT}", |
| 19 | + "REDIS_PWD": "${input:REDIS_PWD}" |
| 20 | + }, |
| 21 | + "metadata": { |
| 22 | + "inputs": [ |
| 23 | + { |
| 24 | + "id": "REDIS_HOST", |
| 25 | + "label": "Redis Host", |
| 26 | + "description": "Hostname or IP of your Redis instance.", |
| 27 | + "type": "text", |
| 28 | + "required": true, |
| 29 | + "secret": false, |
| 30 | + "placeholder": "localhost" |
| 31 | + }, |
| 32 | + { |
| 33 | + "id": "REDIS_PORT", |
| 34 | + "label": "Redis Port", |
| 35 | + "description": "Port of your Redis instance.", |
| 36 | + "type": "text", |
| 37 | + "required": false, |
| 38 | + "secret": false, |
| 39 | + "placeholder": "6379" |
| 40 | + }, |
| 41 | + { |
| 42 | + "id": "REDIS_PWD", |
| 43 | + "label": "Redis Password", |
| 44 | + "description": "Password for Redis authentication. Leave empty for local instances without auth.", |
| 45 | + "type": "password", |
| 46 | + "required": false, |
| 47 | + "secret": true, |
| 48 | + "placeholder": "" |
| 49 | + } |
| 50 | + ] |
| 51 | + } |
| 52 | + }, |
| 53 | + |
| 54 | + "auth": { |
| 55 | + "type": "optional_api_key", |
| 56 | + "instructions": "Provide Redis connection details. Password is optional for local instances." |
| 57 | + }, |
| 58 | + |
| 59 | + "contributor": { |
| 60 | + "name": "Redis", |
| 61 | + "github": "redis", |
| 62 | + "url": "https://redis.io" |
| 63 | + }, |
| 64 | + |
| 65 | + "links": { |
| 66 | + "repository": "https://github.com/redis/mcp-redis", |
| 67 | + "homepage": "https://redis.io", |
| 68 | + "documentation": "https://github.com/redis/mcp-redis#readme" |
| 69 | + }, |
| 70 | + |
| 71 | + "platforms": ["all"], |
| 72 | + |
| 73 | + "capabilities": { |
| 74 | + "tools": true, |
| 75 | + "resources": false, |
| 76 | + "prompts": false, |
| 77 | + "read_only_mode": false |
| 78 | + } |
| 79 | +} |
0 commit comments