Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 917 Bytes

File metadata and controls

34 lines (27 loc) · 917 Bytes

Getting Started with ClaudeCodeLikeMcp

Welcome! This tutorial will help you set up the ClaudeCodeLikeMcp server with your favorite CLI clients.

Prerequisites

  • Node.js v20 or higher installed.
  • An MCP-compatible client like Gemini CLI or Copilot CLI.

Installation

Clone the repository and install the dependencies:

git clone https://github.com/your-username/ClaudeCodeLikeMcp.git
cd ClaudeCodeLikeMcp
npm install
npm run build

Running the Server

The 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!