What is the GitPin MCP server?
Prove and verify multi-repo claims at Git HEAD: path, line, full SHA, no index.
How to install GitPin
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
GITPIN_REGISTRYPath to a GitPin registry YAML listing local Git repository roots.
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"gitpin": {
"command": "npx",
"args": [
"-y",
"gitpin"
],
"env": {
"GITPIN_REGISTRY": "<YOUR_GITPIN_REGISTRY>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"gitpin": {
"command": "npx",
"args": [
"-y",
"gitpin"
],
"env": {
"GITPIN_REGISTRY": "<YOUR_GITPIN_REGISTRY>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"gitpin": {
"command": "npx",
"args": [
"-y",
"gitpin"
],
"env": {
"GITPIN_REGISTRY": "<YOUR_GITPIN_REGISTRY>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"gitpin": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"gitpin"
],
"env": {
"GITPIN_REGISTRY": "<YOUR_GITPIN_REGISTRY>"
}
}
}
}Claude Code
claude mcp add gitpin --env GITPIN_REGISTRY=<YOUR_GITPIN_REGISTRY> -- npx -y gitpinRelated MCP servers
RepoContext
Active
Read-only, commit-pinned repository context for coding agents.
0
View repository →TypeScript
MIT