A collection of MCP (Model Context Protocol) servers for AI agent workflows. Each server is token-efficient by design — schemas and outputs minimize token cost for calling LLMs.
| Server | Path | Description |
|---|---|---|
| Git | src/git/ |
Structured git operations with consistent commit formats and multi-repo support |
npm install
npm run buildThe included .mcp.json configures the git server for Claude Code out of the box:
{
"mcpServers": {
"git": {
"command": "node",
"args": ["dist/git/index.js", "--name", "Claude"]
}
}
}npm link
zm-mcp-git --name Claude- Language: TypeScript (ES2022, Node16 modules)
- Build:
npm run build(runstsc) - Dependencies:
@modelcontextprotocol/sdk,zod
Source lives in src/, compiled output goes to dist/.
MIT — see LICENSE.