-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
61 lines (61 loc) · 2.1 KB
/
Copy pathserver.json
File metadata and controls
61 lines (61 loc) · 2.1 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.perforce/p4plan-mcp",
"description": "MCP server for P4 Plan — tasks, sprints, bugs, comments, custom fields via GraphQL API.",
"version": "2026.2.1",
"repository": {
"url": "https://github.com/perforce/p4plan-mcp.git",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@perforce/p4plan-mcp",
"version": "2026.2.1",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "P4PLAN_API_AUTH_TOKEN",
"description": "JWT bearer token for the P4 Plan GraphQL API. Forwarded as Authorization on every tool call.",
"isRequired": true,
"isSecret": true
},
{
"name": "P4PLAN_API_URL",
"description": "URL of the P4 Plan GraphQL API (default: http://localhost:4000).",
"isRequired": false
},
{
"name": "P4PLAN_ALLOW_SELF_SIGNED_CERTS",
"description": "Set to 'true' to accept self-signed TLS certificates from the GraphQL API. Default: false.",
"isRequired": false
}
]
},
{
"registryType": "oci",
"identifier": "docker.io/perforce/p4plan-mcp:2026.2.1",
"version": "2026.2.1",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "P4PLAN_API_AUTH_TOKEN",
"description": "JWT bearer token for the P4 Plan GraphQL API. Forwarded as Authorization on every tool call.",
"isRequired": true,
"isSecret": true
},
{
"name": "P4PLAN_API_URL",
"description": "URL of the P4 Plan GraphQL API (default: http://localhost:4000).",
"isRequired": false
},
{
"name": "P4PLAN_ALLOW_SELF_SIGNED_CERTS",
"description": "Set to 'true' to accept self-signed TLS certificates from the GraphQL API. Default: false.",
"isRequired": false
}
]
}
]
}