Welcome! This tutorial will help you set up the ClaudeCodeLikeMcp server with your favorite CLI clients.
- Node.js v20 or higher installed.
- An MCP-compatible client like Gemini CLI or Copilot CLI.
Clone the repository and install the dependencies:
git clone https://github.com/your-username/ClaudeCodeLikeMcp.git
cd ClaudeCodeLikeMcp
npm install
npm run buildThe server communicates via standard input/output (stdio). You shouldn't run it manually; instead, configure your client to invoke it.
Example configuration for Gemini CLI (in mcp.json):
{
"mcpServers": {
"ClaudeCodeLikeMcp": {
"command": "node",
"args": ["/path/to/ClaudeCodeLikeMcp/dist/index.js"]
}
}
}Check our client-specific setup guides in the docs/ folder for more detailed instructions!