kieutrongthien/coding-mcp
Coding MCP is a multi-project MCP server for remote coding workflows. It lets agents work across repositories without cloning source code or setting up each repo locally. It provides safety-first file, Git, and command automation, with HTTP/STDIO transports, auth, logging, and telemetry for production use.
Platform-specific configuration:
{
"mcpServers": {
"coding-mcp": {
"command": "npx",
"args": [
"-y",
"coding-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Production-ready MCP server that lets AI agents perform coding tasks on remote repositories.
coding-mcp is an MCP (Model Context Protocol) server that exposes your code repositories as a set of tools and resources that AI agents can use to read, write, search, and run commands — all without the agent needing local access to the repositories.
Primary goal: deploy one server on a machine that hosts your code, then connect any MCP-compatible agent (Claude, Cursor, etc.) to it. The agent can browse files, edit code, run builds and tests, manage git, and more — all through structured MCP tool calls.
┌─────────────────────────────────────────────┐
│ AI Agent (Claude / Cursor / any MCP client) │
└────────────────┬────────────────────────────┘
│ MCP over HTTP or STDIO
▼
┌─────────────────────────────────────────────┐
│ coding-mcp server │
│ (runs on the machine with your repos) │
│ │
│ Tools: files · git · search · commands │
│ Resources: project index · file content │
│ Prompts: implement · review · fix tests │
└──────────────────┬──────────────────────────┘
│ filesystem + git
▼
/projects/repo-a /projects/repo-b …Loading reviews...