MCP server for P4 Plan — tasks, sprints, bugs, comments, custom fields via GraphQL API.
Runs locally over stdio
This server isn't hosted — your MCP client launches it from a package registry. Use one of the commands below, or drop the config into your client (e.g. Claude Desktop).
Run
npx -y @perforce/p4plan-mcp
MCP client config
{
"mcpServers": {
"p4plan-mcp": {
"command": "npx",
"args": [
"-y",
"@perforce/p4plan-mcp"
]
}
}
}Run
docker run -i --rm docker.io/perforce/p4plan-mcp:2026.2.1
MCP client config
{
"mcpServers": {
"p4plan-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"docker.io/perforce/p4plan-mcp:2026.2.1"
]
}
}
}