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