Skip to content

Commit 24e3920

Browse files
committed
Update server-redis package.json to be consistent with other MCP packages
1 parent 7d6cdb6 commit 24e3920

File tree

1 file changed

+17
-14
lines changed

1 file changed

+17
-14
lines changed

src/redis/package.json

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,31 @@
11
{
2-
"name": "redis",
3-
"version": "1.0.0",
4-
"main": "index.js",
2+
"name": "@modelcontextprotocol/server-redis",
3+
"version": "0.1.0",
4+
"description": "MCP server for using Redis",
5+
"license": "MIT",
6+
"author": "Anthropic, PBC (https://anthropic.com)",
7+
"homepage": "https://modelcontextprotocol.io",
8+
"bugs": "https://github.com/modelcontextprotocol/servers/issues",
59
"type": "module",
610
"bin": {
711
"redis": "./build/index.js"
812
},
9-
"scripts": {
10-
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\""
11-
},
1213
"files": [
1314
"build"
1415
],
15-
"keywords": [],
16-
"author": "",
17-
"license": "ISC",
18-
"description": "",
19-
"devDependencies": {
20-
"@types/node": "^22.10.2",
21-
"typescript": "^5.7.2"
16+
"scripts": {
17+
"build": "tsc && shx chmod +x build/*.js",
18+
"prepare": "npm run build",
19+
"watch": "tsc --watch"
2220
},
2321
"dependencies": {
24-
"@modelcontextprotocol/sdk": "^0.4.0",
22+
"@modelcontextprotocol/sdk": "^1.7.0",
23+
"@types/node": "^22.10.2",
2524
"@types/redis": "^4.0.10",
2625
"redis": "^4.7.0"
26+
},
27+
"devDependencies": {
28+
"shx": "^0.3.4",
29+
"typescript": "^5.7.2"
2730
}
2831
}

0 commit comments

Comments
 (0)