git-mcp-server
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., "@git-mcp-servercheck the current git status"
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.
git-mcp-server
git-mcp-server is a local stdio Model Context Protocol (MCP) server for a
small, explicit set of native Git operations. It is a development preview, not
an npm stable release or a general shell.
Status
Version 0.1.0-beta.2 is the npm development preview of
@saitolume/git-mcp-server and is distributed only under the beta tag. The
latest tag and an npm stable release are not available. A stable release
remains a separate gate: it needs an exact stable MCP SDK, provider acceptance
across a broader set of clients, and hosted CI evidence.
Related MCP server: MCP Git Server
Requirements
The built runtime requires Node.js >=22, native Git 2.39.0 or later on PATH,
and a trusted local Git repository. Building from source requires Node.js
=22.13 and
pnpm@11.15.1.
Run the beta
Start the published development preview with the explicit beta tag:
npx --yes @saitolume/git-mcp-server@betaDo not omit @beta; this preview does not use the latest tag.
Build from source
Clone this repository, then enter its directory and run:
pnpm install --frozen-lockfile
pnpm buildMCP configuration
Configure an MCP client to start the explicit npm beta:
{
"mcpServers": {
"git": {
"command": "npx",
"args": ["--yes", "@saitolume/git-mcp-server@beta"]
}
}
}For a source build, run the built server with
node /absolute/path/dist/cli.js. Use an absolute path to the checkout because
an MCP client's working directory may be undefined.
Tools
Tool | Purpose |
| Read repository identity, branch, HEAD, index/worktree state, and a worktree snapshot ID. |
| Return a byte-limited worktree or staged diff for declared paths. |
| Create and switch to a branch after exact attached-or-detached branch and HEAD preflight. |
| Stage declared paths, or mark declared conflict paths resolved. |
| Destructively unstage declared paths owned by a stage session. |
| Destructively restore declared paths after a worktree snapshot guard. |
| Commit the exact active stage session with the supplied message; native |
| Fetch |
| Merge an expected fetched |
| Complete a declared merge session after resolved paths are staged. |
| Destructively abort a declared in-progress merge session. |
| Push an expected local branch head after checking the expected remote head. |
| Read the durable result for a request ID. |
Typical workflow
Call git_status. To create a branch from an attached branch, pass its exact
name as git_switch_create.expected_branch; when git_status returns
branch: null, pass expected_branch: null to require that exact detached
HEAD before creating the branch. Then explicitly call git_add for the paths
intended for a commit, and finally call git_commit. For remote work, call
git_fetch, then git_merge; when a merge reports conflicts, resolve the listed paths, call
git_add, and call git_merge_continue. Use git_merge_abort only when the
declared merge must be abandoned. If transport is interrupted after a request,
use the same request ID with git_operation_get to replay its durable result;
do not repeat the mutation.
Safety boundaries
Use only trusted repositories. Inputs are explicit repository-relative paths
and mutations require expected branch and HEAD preconditions. Only
git_switch_create accepts a null expected branch, strictly meaning detached
HEAD; other mutations require an attached branch name. Native hooks are
enabled and may run repository-controlled code. Commits use --no-gpg-sign;
the server does not bypass hooks. Review destructive restore, merge-abort,
merge, and push operations before approving them.
The server is not an isolation boundary for intentionally malicious hooks running as the same operating-system user. Hook-failure redaction is a bounded result contract for trusted repositories, not a sandbox for hostile hook code.
When a native pre-commit or commit-msg hook rejects a commit,
git_commit returns status: "failed" with error.code: "HOOK_FAILED".
The fixed error contains only error.details.hook, whose value is allowlisted
to pre-commit or commit-msg. Raw hook stdout and stderr, the hook exit
status, and file contents are not returned or persisted in the operation
result. The commit HEAD remains unchanged and the stage session remains
available for a corrected retry. If the hook changed the index before
rejecting the commit, the existing index guard prevents retry until the caller
restores an exact stage-session state.
State directories
The server stores locks, durable operations, sessions, and audit records in a private state root:
Platform | State root |
macOS |
|
Linux |
|
Platform support
macOS and Linux are supported with Node.js >=22 and a POSIX-style filesystem. Windows is not supported or promised.
Development
This development preview uses the exact beta MCP SDK versions declared in
package.json. Run pnpm check for the local build and test contract, and
pnpm pack --dry-run --json to inspect the package payload without publishing.
The beta package remains separate from the npm stable-release gates described
in Status. See the
provider checklist and
architecture.
Security
Do not report vulnerabilities in public issues. Use GitHub Private Vulnerability Reporting as described in SECURITY.md.
Support and contributions
This project does not accept Issues, pull requests, or support requests. Please do not submit a contribution or request assistance through this source repository.
License
Distributed under the MIT License.
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/saitolume/git-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server