-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 2.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "mcp-perforce-server",
"version": "3.3.0",
"description": "Enterprise-grade MCP (Model Context Protocol) server for Perforce P4 integration with AI assistants. Includes 59 MCP tools, native-style batch and flag support, rich review/search workflow helpers, and comprehensive security controls such as audit logging, rate limiting, input sanitization, and compliance reporting.",
"main": "dist/server.js",
"bin": {
"mcp-perforce-server": "dist/server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/server.js",
"dev:sse": "tsc && node dist/server.js --transport=sse",
"start": "node dist/server.js",
"start:sse": "node dist/server.js --transport=sse",
"watch": "tsc --watch",
"clean": "rimraf dist",
"test": "node test-server.js",
"test:integration": "npm run build && node integration-test.js",
"prepare": "npm run build",
"prepublishOnly": "npm run clean && npm run build",
"audit-fix": "npm audit fix"
},
"keywords": [
"mcp",
"model-context-protocol",
"perforce",
"p4",
"p4v",
"vcs",
"version-control",
"ai",
"automation",
"claude",
"chatgpt",
"vscode",
"cursor",
"anthropic",
"openai",
"git",
"scm",
"devops",
"enterprise",
"developer-tools",
"code-assistant",
"ai-integration",
"workflow-automation",
"typescript",
"cross-platform",
"windows",
"macos",
"linux",
"production-ready",
"secure",
"open-source",
"community",
"customizable",
"vibe-coding",
"merge-resolution",
"code-review",
"shelving",
"blame",
"grep",
"search",
"job-tracking",
"labels",
"analytics",
"comprehensive",
"37+operations",
"compliance",
"audit-logging",
"rate-limiting",
"input-sanitization",
"memory-limits",
"soc2",
"gdpr",
"hipaa",
"enterprise-security",
"compliance-reporting"
],
"homepage": "https://github.com/iPraBhu/mcp-perforce-server#readme",
"bugs": {
"url": "https://github.com/iPraBhu/mcp-perforce-server/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iPraBhu/mcp-perforce-server.git"
},
"license": "MIT",
"author": "Pratik Bhuite (https://github.com/iPraBhu)",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/adevguide"
},
"type": "commonjs",
"types": "./dist/server.d.ts",
"files": [
"dist/**/*",
"README.md",
"MCP_CONFIG_EXAMPLES.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"express": "^4.21.2",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^25.0.10",
"@types/express": "^5.0.0",
"@types/cors": "^2.8.17",
"rimraf": "^5.0.10",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}