mcp-perforce-server 1.0.0 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +24 -19
package/README.md CHANGED
@@ -217,6 +217,20 @@ 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
+ ## Support This Project
221
+
222
+ ☕ **Enjoying this tool?** [Buy me a coffee on Ko-fi](https://ko-fi.com/adevguide) to support continued development and new features!
223
+
224
+ [![Ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/adevguide)
225
+
226
+ ## Security
227
+
228
+ This project follows security best practices:
229
+ - 🔒 **Dependencies**: Regularly updated to latest secure versions
230
+ - 🛡️ **Default Safety**: Read-only mode and delete protection by default
231
+ - 🔍 **Audit**: Run `npm run audit-fix` to check for vulnerabilities
232
+ - 📢 **Report Issues**: Security issues? Please report privately via GitHub
233
+
220
234
  ## License
221
235
 
222
236
  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.0",
3
+ "version": "1.0.2",
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",
@@ -48,35 +63,25 @@
48
63
  },
49
64
  "license": "MIT",
50
65
  "author": "Pratik Bhuite (https://github.com/iPraBhu)",
66
+ "funding": {
67
+ "type": "ko-fi",
68
+ "url": "https://ko-fi.com/adevguide"
69
+ },
51
70
  "type": "commonjs",
52
- "main": "dist/server.js",
53
71
  "types": "./dist/server.d.ts",
54
- "bin": {
55
- "mcp-perforce-server": "dist/server.js"
56
- },
57
72
  "files": [
58
73
  "dist/**/*",
59
74
  "README.md",
60
75
  "MCP_CONFIG_EXAMPLES.md",
61
76
  "LICENSE"
62
77
  ],
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
78
  "dependencies": {
74
- "@modelcontextprotocol/sdk": "^1.0.0"
79
+ "@modelcontextprotocol/sdk": "^1.0.2"
75
80
  },
76
81
  "devDependencies": {
77
- "@types/node": "^20.0.0",
78
- "rimraf": "^5.0.0",
79
- "typescript": "^5.0.0"
82
+ "@types/node": "^22.10.0",
83
+ "rimraf": "^6.0.1",
84
+ "typescript": "^5.7.2"
80
85
  },
81
86
  "engines": {
82
87
  "node": ">=18.0.0"