
Perforce
STDIOMCP server providing clean interface for Perforce operations in Claude Desktop
MCP server providing clean interface for Perforce operations in Claude Desktop
A Model Context Protocol (MCP) server that provides a clean interface for Perforce (P4) operations in Claude Desktop. This server wraps P4 commands to make them more reliable and easier for Claude to use, eliminating issues with interactive prompts and complex state management.
.p4config
files for per-project settings.p4config
files in your project directories (recommended)# Install the package globally npm install -g @cocoon-ai/mcp-perforce # Add to Claude Code claude mcp add perforce @cocoon-ai/mcp-perforce
That's it! Claude Code will automatically configure the server for you.
npm install -g @cocoon-ai/mcp-perforce
git clone https://github.com/Cocoon-AI/mcp-perforce.git cd mcp-perforce npm install npm run build npm link # Makes 'mcp-perforce' available globally
Add the server to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Linux: ~/.config/claude/claude_desktop_config.json
{ "mcpServers": { "perforce": { "command": "npx", "args": ["-y", "@cocoon-ai/mcp-perforce"], "env": { "P4CONFIG": ".p4config" } } } }
The server uses Perforce's built-in P4CONFIG mechanism to automatically switch between different Perforce servers based on your current directory. Create a .p4config
file in each project root:
# ~/projects/gamedev/.p4config P4PORT=perforce-game.company.com:1666 P4CLIENT=gamedev-workspace P4USER=your-username # ~/projects/web/.p4config P4PORT=perforce-web.company.com:1666 P4CLIENT=web-workspace P4USER=your-username
Now the MCP server will automatically use the correct Perforce settings based on which project directory you're working in!
Once configured, you can ask Claude to use these P4 operations. All commands will automatically use the .p4config
settings from your current project directory.
p4_status
: Check workspace status and pending changes
"Show me my pending P4 changes"
"Check P4 status in the gamedev directory"
p4_add
: Add files to Perforce
"Add all .js files in the src directory to Perforce"
p4_edit
: Open files for edit
"Open config.json for editing in Perforce"
p4_delete
: Mark files for deletion
"Delete the old_module.py file from Perforce"
p4_sync
: Sync files from depot
"Sync all files in the project"
"Force sync the src directory"
p4_revert
: Revert files or entire changelists
"Revert all files in changelist 12345"
"Revert changes to config.json"
p4_diff
: Show differences for files
"Show me the diff for all my open files"
p4_changelist_create
: Create a new changelist
"Create a new changelist with description 'Fix login bug'"
p4_changelist_submit
: Submit a changelist
"Submit changelist 12345"
p4_move_to_changelist
: Move files between changelists
"Move all my open files to changelist 12345"
p4_stream_list
: List streams in a depot
"List all streams in //depot"
"Show me development streams matching 'feature'"
p4_stream_info
: Get detailed stream information
"Show me details about //depot/main stream"
p4_stream_switch
: Switch workspace to a different stream
"Switch to the //depot/dev stream"
"Force switch to //depot/release-2.0"
p4_stream_create
: Create a new stream
"Create a development stream //depot/feature-xyz from //depot/main"
p4_stream_edit
: Edit stream specification
"Edit the //depot/feature-xyz stream spec"
p4_stream_graph
: Show stream hierarchy
"Show the stream hierarchy for //depot"
p4_info
: Show current Perforce configuration
"Show me which P4 server and workspace I'm using"
Here are some example conversations with Claude:
Example 1: Creating and submitting a change
You: "I've modified server.js and config.json. Create a changelist for these fixes"
Claude: I'll help you create a changelist for your changes. Let me first check the status...
[Uses p4_status, p4_changelist_create, p4_submit]
Example 2: Syncing and reviewing changes
You: "Sync the latest changes and show me what files I have open"
Claude: I'll sync your workspace and check your open files...
[Uses p4_sync, p4_status]
npm list -g @cocoon-ai/mcp-perforce
.p4config
file exists and has the correct settingsp4 info
p4 login
p4 set P4CONFIG
.p4config
from the current or parent directoriesp4 info
to see which config is being usedp4_info
command in Claude to debug: "Show me my P4 configuration"To enable debug output, add to your configuration:
{ "mcpServers": { "perforce": { "command": "npx", "args": ["-y", "@cocoon-ai/mcp-perforce"], "env": { "P4CONFIG": ".p4config", "DEBUG": "mcp:*" } } } }
git clone https://github.com/Cocoon-AI/mcp-perforce.git cd mcp-perforce npm install npm run build
npm test
src/tools/
src/handlers/
src/handlers/index.ts
Contributions are welcome! Please:
git checkout -b feature/new-command
)git commit -am 'Add new P4 command'
)git push origin feature/new-command
)MIT License - see LICENSE file for details
Made with ❤️ for AIs struggling with P4 command-line operations