Claude Code CLI MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Claude Code CLI MCP Serverrun a synchronous task to analyze the project structure"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Claude Code CLI MCP Server
Version: 0.1.0
A local STDIO MCP server that exposes tools and reusable prompts for running the Anthropic Claude Code CLI (claude) inside a controlled workspace.
Links
Model Context Protocol (MCP): https://modelcontextprotocol.io/
FastMCP: https://github.com/PrefectHQ/fastmcp
FastMCP docs: https://gofastmcp.com/
uv docs: https://docs.astral.sh/uv/
Pydantic: https://github.com/pydantic/pydantic
Pydantic Settings: https://github.com/pydantic/pydantic-settings
Claude Code CLI: https://claude.ai/
Related MCP server: SystemPrompt Coding Agent
Why This Project Exists
This project is a multi-provider fork of agy-mcp-server (the sister project wrapping the Google Antigravity CLI). Both projects share the same underlying architecture to provide a thin, secure CLI shim that exposes terminal-based AI tools as Model Context Protocol (MCP) servers.
Using the Claude Code CLI directly inside an editor or orchestrator workspace poses security and configuration challenges. This MCP server encapsulates the claude process, enforcing directory access controls, standardizing outputs, and providing a file-based persistent memory layer so that system prompts and session history survive across project reloads.
Now you can leverage your Claude Pro/Team subscription or ANTHROPIC_API_KEY seamlessly inside any MCP-enabled IDE:
Cursor
Windsurf
Trae
Features
Tools
claude_health: Checks that theclaudebinary is installed, authenticated, and returns its version and authentication status.claude_run_task: Runs a synchronous (blocking) task inside the target workspace directory. Acceptsmodelandfallback_modelto select the Claude model per-run.claude_start_task: Starts an asynchronous background task inside the target workspace. Accepts the samemodelandfallback_modelparameters.claude_poll_task: Polls the status, stdout, stderr, and output changes of an active background task.claude_cancel_task: Cancels a running background task (supporting an optional force signal).claude_list_runs: Lists recent tasks managed by the server and their statuses.claude_init_persistence: Initializes the persistence layer folder and creates template markdown files.claude_read_persistence: Reads the contents of a persistent memory file (AGENTS.md,PROJECTS.md, orMEMORY.md).claude_append_persistence: Appends high-signal updates (e.g., session memories) to a persistence file.claude_update_persistence: Replaces or appends to a specific section of a persistence file by heading anchor.claude_load_persistence_context: Loads the persistent files as truncated excerpts to inject into session context.
Prompts
claude_sync_orchestration: Guidance playbook for executing synchronous tasks safely viaclaude_run_task.claude_async_orchestration: Playbook for orchestrating background tasks viaclaude_start_taskandclaude_poll_task.claude_model_selection_guidance: Outlines model selection constraints, allowed models, and aliases.claude_security_and_workspace_rules: Summarizes sandbox limits and rules for safe and permissive environments.claude_persistence_protocol: Guides the orchestrator on maintaining the persistent memory files.
Persistent Memory
This MCP server features a file-based persistence layer stored by default under ~/.open-cli-router/claude-code/. The directory contains three editable markdown files:
AGENTS.md: The system prompt or agent persona instructions.PROJECTS.md: Summaries and structures of active projects.MEMORY.md: Chronological log of high-signal session takeaways and permanent learning.
When persistence is enabled, the server automatically loads these files and prepends their formatted excerpts to the prompt sent to the claude CLI, ensuring cross-session state persistence.
Two-level configuration
Persistence is controlled by both server-level environment variables and runtime MCP tool calls:
Server level (set in the MCP client env block — see MCP Client Configuration):
Variable | Purpose | Default |
| Master switch for the persistence feature |
|
| Base directory; the namespace |
|
| Maximum size per file before writes are rejected |
|
| Create |
|
| Seed default markdown content when initializing |
|
Runtime level (called by the orchestrator via MCP tools):
Initialize once — call
claude_init_persistenceto create~/.open-cli-router/claude-code/and seed the three files.Load context — call
claude_load_persistence_contextat the start of each session to inject excerpts into the next prompt.Append session notes — after meaningful work, call
claude_append_persistenceonMEMORY.md.Update structured sections — when the user changes
AGENTS.mdorPROJECTS.md, callclaude_update_persistenceto persist.
Without step 1, persistence is enabled but uninitialized — the server will not inject any context until the directory exists.
How to initialize the persistence directory
The persistence directory is created lazily — it does not exist by default. There are two equivalent ways to create it:
Option A — via MCP (recommended, normal flow):
Once both the MCP client configuration and the server are running, ask the orchestrator agent to call:
Please call claude_init_persistence to create the persistence directory.The tool seeds AGENTS.md, PROJECTS.md, MEMORY.md, and a .initialized marker under ~/.open-cli-router/claude-code/.
Option B — directly via Python (one-shot, useful for verification or first-time setup):
From the project root (claude-code-cli-mcp/):
uv run python -c "from claude_code_mcp.persistence import PersistenceStore; from pathlib import Path; PersistenceStore(base_dir=Path.home()/'.open-cli-router', max_file_bytes=1048576, backup_on_write=False, seed_templates=True).init()"This call is idempotent — running it twice does not destroy existing data unless you pass force=True.
The seed templates are written in English so they can be edited by any language-aware agent later.
Quickstart
Prerequisites:
Python 3.11+
uvinstalledclaudeCLI installed (viacurl -fsSL https://claude.ai/install.sh | bash) and authenticated (via a Claude Pro/Team subscription stored at~/.claude.jsonor theANTHROPIC_API_KEYenvironment variable).
Sync dependencies:
uv syncLaunch the server using STDIO transport:
uv run python -m fastmcp.cli run src/claude_code_mcp/server.py --transport stdioMCP Client Configuration
The server is launched by an MCP client (Trae, Cursor, Windsurf, etc.) over STDIO. The recommended setup uses uvx to install the package from a local source path on demand — no global Python install required.
Trae / Cursor / Windsurf (uvx from local source)
Add to your MCP client configuration (~/.trae/mcp.json, .cursor/mcp.json, .windsurf/mcp.json, or the IDE's MCP settings panel):
{
"mcpServers": {
"claude-code-cli-mcp": {
"command": "uvx",
"args": [
"--refresh",
"--from",
"/path/to/claude-code-cli-mcp",
"fastmcp",
"run",
"src/claude_code_mcp/server.py"
],
"cwd": "/path/to/claude-code-cli-mcp",
"env": {
"CLAUDE_MCP_MODE": "safe",
"CLAUDE_MCP_ALLOWED_ROOTS": "[\"/path/to/your/projects\"]",
"CLAUDE_MCP_FORCE_SANDBOX_IN_SAFE_MODE": "true",
"CLAUDE_MCP_ALLOWED_MODELS": "[\"sonnet\", \"opus\"]",
"START_MCP_TIMEOUT_MS": "30000",
"RUN_MCP_TIMEOUT_MS": "600000"
}
}
}
}Tip:
--refreshforcesuvxto re-resolve the local source on every start. Drop it once you stop iterating on the server.Tip:
START_MCP_TIMEOUT_MSandRUN_MCP_TIMEOUT_MSare client-side timeouts consumed by the Trae IDE (not by this server).
Relevant environment variables
The most relevant variables for the env block are listed below. See Configuration for the full reference.
Variable | Purpose |
|
|
| JSON list of workspace roots the server is allowed to access |
|
|
| JSON list of permitted model aliases / full names (e.g. |
| Enables the persistent memory layer ( |
| Base directory for the persistence layer ( |
Persistence is a two-level configuration. The env vars above only enable the feature and pick the base directory. To actually create the files and start injecting context, the orchestrator must call
claude_init_persistenceonce at startup. See Persistent Memory for the full lifecycle.
Step-by-step Trae setup (Portuguese)
For a guided walkthrough in Portuguese, see USO_TRAE.md.
Running Tests
To install dev dependencies and execute the test suite:
uv sync --extra dev
uv run pytestUsing This Server in Trae
For step-by-step instructions in Portuguese on setting up and invoking this server inside the Trae IDE, see USO_TRAE.md.
Configuration
The server is configured using environment variables prefixed with CLAUDE_MCP_ via Pydantic Settings.
Variable | Description | Default |
| Server access mode ( |
|
| JSON list of allowed workspace roots. | Current working directory |
| Path or command to invoke the |
|
| Fallback absolute paths to search for the binary. |
|
| Pass |
|
| Enforce sandbox execution in safe mode. |
|
| Permission mode flag ( |
|
| Maximum allowed execution time for tasks in seconds. |
|
| Default wait time between polling iterations. |
|
| Maximum concurrent background executions allowed. |
|
| History size of completed tasks in the run store. |
|
| Maximum stdout bytes captured from the child process. |
|
| Maximum stderr bytes captured from the child process. |
|
| JSON set of permitted model names or aliases. |
|
| JSON list of allowed env keys to pass in permissive mode. |
|
| JSON list of allowed CLI arguments in permissive mode. |
|
| Enables the persistent markdown memory layer. |
|
| Base directory for the persistence layer. |
|
| Maximum file size for persistence files before rejecting writes. |
|
| Create a |
|
| Seed default markdown files if missing on init. |
|
| Optional Logfire token for application telemetry. |
|
Model Selection
The MCP server exposes two optional parameters on claude_run_task and claude_start_task for selecting the model on a per-request basis:
model: The primary model used for the run. Accepts a short alias ("sonnet","opus","haiku") or a full model name (e.g.,"claude-sonnet-4-6").fallback_model: An optional automatic fallback model used when the primary model is overloaded. Print-mode only in the CLI — since bothclaude_run_task(sync) andclaude_start_task(async) invoke the CLI via-p, this flag is safe to use in both modes.
Examples:
{
"workspace_path": "/abs/path/to/project",
"prompt": "Refactor the auth module",
"model": "sonnet",
"fallback_model": "haiku"
}{
"workspace_path": "/abs/path/to/project",
"prompt": "Plan a migration to event sourcing",
"model": "claude-sonnet-4-6"
}Both fields are validated against the CLAUDE_MCP_ALLOWED_MODELS allowlist. When set, a model outside the allowlist returns MODEL_NOT_ALLOWED; the same check applies to fallback_model. An empty allowlist disables validation and permits any model requested.
For deeper guidance on choosing models and aliases, see the claude_model_selection_guidance prompt.
Security
Safe Mode (Default)
In safe mode (CLAUDE_MCP_MODE=safe):
Sandbox execution is enforced (if
CLAUDE_MCP_FORCE_SANDBOX_IN_SAFE_MODEis enabled).Custom environment overrides are blocked.
Custom extra command-line arguments are blocked.
Bypassing permissions (
bypassPermissionsordontAskpermission modes) is rejected.
Permissive Mode
In permissive mode (CLAUDE_MCP_MODE=permissive):
Environment variable overrides are permitted only if they appear in the
CLAUDE_MCP_ALLOW_ENV_KEYSlist.Extra arguments are allowed only if they appear in
CLAUDE_MCP_ALLOW_EXTRA_ARGS.Skipping permissions (
bypassPermissionsor--dangerously-skip-permissions) requires"--dangerously-skip-permissions"to be explicitly listed inCLAUDE_MCP_ALLOW_EXTRA_ARGS.
Troubleshooting
CLAUDE_NOT_FOUND
The server cannot locate the claude executable. Make sure it is installed (e.g. via the official installer) and added to your PATH. Alternatively, set CLAUDE_MCP_CLAUDE_PATH to the absolute path of the binary.
NOT_ALLOWED: workspace_path is outside allowed roots
Your workspace path is outside of the configured roots. Include the target directory in the CLAUDE_MCP_ALLOWED_ROOTS JSON array, or launch the server from within the target folder.
PERSISTENCE_FILE_TOO_LARGE
A persistence file has reached the maximum allowed bytes (default 1 MiB). Clean up or truncate obsolete entries in the file (~/.open-cli-router/claude-code/MEMORY.md or PROJECTS.md) to allow new writes.
CONFIRM_REQUIRED
Modifying AGENTS.md (the system prompt) in safe mode requires setting the confirm parameter to true to ensure the override is intentional.
~/.open-cli-router/claude-code/ does not exist
The persistence directory is created lazily. The server will not create it on its own — you must initialize it once via claude_init_persistence (or the Python one-liner under Persistent Memory → How to initialize). Without this, the server is enabled but uninitialized and no context is injected into prompts.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bill-kopp-ai-dev/claude-code-cli-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server