mirror of
https://github.com/modelcontextprotocol/servers.git
synced 2026-04-19 00:23:24 +02:00
# Redis A Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
29 lines
549 B
JSON
29 lines
549 B
JSON
{
|
|
"name": "redis",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"redis": "./build/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\""
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"description": "",
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.2",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^0.4.0",
|
|
"@types/redis": "^4.0.10",
|
|
"redis": "^4.7.0"
|
|
}
|
|
}
|