mcp-perforce-server 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/package.json +20 -19
package/README.md
CHANGED
|
@@ -217,6 +217,14 @@ This project was created with ❤️ by [Pratik Bhuite](https://github.com/iPraB
|
|
|
217
217
|
|
|
218
218
|
**Found this useful?** Consider giving it a star ⭐ and sharing with others who might benefit!
|
|
219
219
|
|
|
220
|
+
## Security
|
|
221
|
+
|
|
222
|
+
This project follows security best practices:
|
|
223
|
+
- 🔒 **Dependencies**: Regularly updated to latest secure versions
|
|
224
|
+
- 🛡️ **Default Safety**: Read-only mode and delete protection by default
|
|
225
|
+
- 🔍 **Audit**: Run `npm run audit-fix` to check for vulnerabilities
|
|
226
|
+
- 📢 **Report Issues**: Security issues? Please report privately via GitHub
|
|
227
|
+
|
|
220
228
|
## License
|
|
221
229
|
|
|
222
230
|
MIT License - Feel free to use, modify, and distribute as needed. See [LICENSE](LICENSE) for details.
|
package/package.json
CHANGED
|
@@ -1,7 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-perforce-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Enterprise-grade MCP (Model Context Protocol) server for Perforce P4 integration with AI assistants like Claude, ChatGPT, and VS Code. Created by Pratik Bhuite using vibe coding to solve real-world Perforce automation challenges. Open source, customizable, and community-driven.",
|
|
5
|
+
"main": "dist/server.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"mcp-perforce-server": "dist/server.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc",
|
|
11
|
+
"dev": "tsc && node dist/server.js",
|
|
12
|
+
"start": "node dist/server.js",
|
|
13
|
+
"watch": "tsc --watch",
|
|
14
|
+
"clean": "rimraf dist",
|
|
15
|
+
"test": "node test-server.js",
|
|
16
|
+
"prepare": "npm run build",
|
|
17
|
+
"prepublishOnly": "npm run clean && npm run build",
|
|
18
|
+
"audit-fix": "npm audit fix"
|
|
19
|
+
},
|
|
5
20
|
"keywords": [
|
|
6
21
|
"mcp",
|
|
7
22
|
"model-context-protocol",
|
|
@@ -49,34 +64,20 @@
|
|
|
49
64
|
"license": "MIT",
|
|
50
65
|
"author": "Pratik Bhuite (https://github.com/iPraBhu)",
|
|
51
66
|
"type": "commonjs",
|
|
52
|
-
"main": "dist/server.js",
|
|
53
67
|
"types": "./dist/server.d.ts",
|
|
54
|
-
"bin": {
|
|
55
|
-
"mcp-perforce-server": "dist/server.js"
|
|
56
|
-
},
|
|
57
68
|
"files": [
|
|
58
69
|
"dist/**/*",
|
|
59
70
|
"README.md",
|
|
60
71
|
"MCP_CONFIG_EXAMPLES.md",
|
|
61
72
|
"LICENSE"
|
|
62
73
|
],
|
|
63
|
-
"scripts": {
|
|
64
|
-
"build": "tsc",
|
|
65
|
-
"dev": "tsc && node dist/server.js",
|
|
66
|
-
"start": "node dist/server.js",
|
|
67
|
-
"watch": "tsc --watch",
|
|
68
|
-
"clean": "rimraf dist",
|
|
69
|
-
"test": "node test-server.js",
|
|
70
|
-
"prepare": "npm run build",
|
|
71
|
-
"prepublishOnly": "npm run clean && npm run build"
|
|
72
|
-
},
|
|
73
74
|
"dependencies": {
|
|
74
|
-
"@modelcontextprotocol/sdk": "^1.0.
|
|
75
|
+
"@modelcontextprotocol/sdk": "^1.0.2"
|
|
75
76
|
},
|
|
76
77
|
"devDependencies": {
|
|
77
|
-
"@types/node": "^
|
|
78
|
-
"rimraf": "^
|
|
79
|
-
"typescript": "^5.
|
|
78
|
+
"@types/node": "^22.10.0",
|
|
79
|
+
"rimraf": "^6.0.1",
|
|
80
|
+
"typescript": "^5.7.2"
|
|
80
81
|
},
|
|
81
82
|
"engines": {
|
|
82
83
|
"node": ">=18.0.0"
|