- Home
- MCP servers
- Claude Code
Claude Code
- javascript
12
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"egoist-claude-code-mcp": {
"command": "bunx",
"args": [
"claude-code-mcp@latest"
]
}
}
}You can run Claude-code MCP locally to enable code-generation capabilities via MCP clients. This server powers interactive code tasks by executing commands through Bunx and exposing a standardized MCP interface for clients to connect to and send requests.
How to use
You will start the Claude-code MCP server locally and connect your MCP client to it. Use the MCP client to initiate tasks, send prompts, and receive structured results from the Claude-code MCP server. The server runs as a local process, so you can start it from your development environment and keep it running while you test or integrate it into your workflow. When you launch it, your client will communicate with the server using the MCP protocol over the selected runtime.
How to install
Prerequisites you need before starting:
- Install Bun to run Bunx commands
- Have a working Node.js environment if your project relies on Bunx tooling
- Have network access to install the runtime package
Step-by-step commands to get Claude-code MCP up and running locally:
# 1. Install Bun (if not already installed)
curl -fsSL https://bun.sh/install | bash
# 2. Ensure Bun is available in your PATH (refresh shell if needed)
export BUN_INSTALL=${HOME}/.bun
export PATH=${BUN_INSTALL}/bin:$PATH
# 3. Run Claude-code MCP locally using Bunx as defined in the MCP config
bunx claude-code-mcp@latest
Additional notes
This MCP server is configured to run locally via Bunx with the latest Claude-code MCP package. Start it with the commands above, then connect your MCP client to the running process. If you need to stop the server, terminate the Bunx process in your terminal. Ensure your client and server share a compatible MCP version to avoid protocol mismatches.
Available tools
Server Run
Launches the local Claude-code MCP server using Bunx with the latest Claude-code MCP package, enabling MCP clients to connect and send requests.