mcp-lock-manager
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-lock-manageracquire lock on src/components/Header.tsx"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-lock-manager
An MCP server that provides file-level exclusive locking across multiple Claude Code instances. Prevents conflicts when multiple agents edit files in the same project simultaneously.
How It Works
When multiple Claude Code sessions share a project, they can clobber each other's edits. This MCP server acts as a mutex — each session acquires a lock before editing a file and releases it when done. Locks are stored in a local .locks/ directory using atomic filesystem operations.
Stale locks from crashed sessions are automatically detected via PID liveness checks and cleaned up.
Related MCP server: asynkor
Setup
1. Install & Build
git clone https://github.com/maxwellplanck/mcp-lock-manager.git
cd mcp-lock-manager
npm install
npm run build2. Configure Claude Code
Add to your .claude/settings.json (project or user-level):
{
"mcpServers": {
"lock-manager": {
"command": "node",
"args": ["/absolute/path/to/mcp-lock-manager/build/index.js", "--project-root", "/absolute/path/to/your/project"]
}
}
}The --project-root flag tells the server which project directory to manage locks for. If omitted, it defaults to the current working directory.
You can also set the project root via environment variable:
{
"mcpServers": {
"lock-manager": {
"command": "node",
"args": ["/absolute/path/to/mcp-lock-manager/build/index.js"],
"env": {
"PROJECT_ROOT": "/absolute/path/to/your/project"
}
}
}
}Tools
lock_acquire
Acquire exclusive locks on one or more files before editing.
Parameter | Type | Required | Description |
|
| Yes | Project-relative file paths (use forward slashes) |
|
| No | Label for this session (e.g. |
Acquires all-or-nothing — if any file is already locked by another live session, the entire request fails with conflict details.
lock_release
Release file locks when done editing.
Parameter | Type | Required | Description |
|
| No | Paths to release. Omit to release all locks for this session. |
lock_list
List all active locks with owner, PID, alive status, and timestamp. Takes no parameters.
lock_cleanup
Force-remove all stale locks held by dead processes. Takes no parameters. Useful when lock_list shows locks with alive: false.
Adding to Your Workflow
For best results, add instructions to your project's CLAUDE.md telling Claude to use locks:
## File Locking
This project uses mcp-lock-manager for multi-session coordination.
Before editing any file, acquire a lock with `lock_acquire`. Release locks with `lock_release` when done.
If a lock conflict occurs, do not proceed — wait or ask the other session to release.License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/maxwellplanck/mcp-lock-manager'
If you have feedback or need assistance with the MCP directory API, please join our Discord server