mcp-cli
a prototype to save fork/exec overhead of ai code agent
File Explorer
- ci.yml
- 2026-04-21-rust-v0.122.0.md
- compare.py
- parse_trace.py
- prompt.md
- README.md
- run.sh
- 2026-04-20-rust-v0.121.0-batch-v1.md
- 2026-04-20-rust-v0.121.0-batch-v2.md
- 2026-04-20-rust-v0.121.0-prefer-mcp.md
- 2026-04-20-rust-v0.121.0-search-ctx.md
- 2026-04-20-rust-v0.121.0.md
- 2026-04-21-rust-v0.122.0-sandbox-ablation.md
- .gitignore
- compare.py
- parse_trace.py
- prompt.md
- README.md
- run.sh
- fs_read.rs
- mod.rs
- tree_sitter.rs
- mod.rs
- strip_noise.rs
- buffer_pool.rs
- changelog.rs
- framing.rs
- handlers.rs
- languages.rs
- main.rs
- metrics.rs
- outline.rs
- parse_cache.rs
- pipe.rs
- prewarm.rs
- search_cache.rs
- server.rs
- watcher.rs
- Cargo.toml
- daemon_client.rs
- main.rs
- mcp.rs
- spawn.rs
- autospawn.rs
- multibridge.rs
- reconnect.rs
- Cargo.toml
- claude_code.rs
- codex.rs
- main.rs
- Cargo.toml
- lib.rs
- paths.rs
- Cargo.toml
- mcp-cli-daemon.plist
- mcp-cli-daemon.service
- README.md
- architecture.md
- INTEGRATION.md
- PROTOCOL.md
- ROADMAP.md
- TODO.md
- .gitignore
- Cargo.lock
- Cargo.toml
- CLAUDE.md
- LICENSE
- README.md
- rust-toolchain.toml
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo build
View Details ▼
cargo build
Compile a local package and all of its dependencies.
cargo {{[b|build]}}
Build the package or packages defined by the `Cargo.toml` manifest file in the local path:
cargo {{[b|build]}} {{[-r|--release]}}
Build artifacts in release mode, with optimizations:
cargo {{[b|build]}} --locked
Require that `Cargo.lock` is up to date:
codex
View Details ▼
codex
Natural language code assistant for the terminal, powered by OpenAI.
Reads and edits files in your current directory to fulfill requests.
codex
Start an interactive Codex session in the current directory:
codex "{{prompt}}"
Run a single Codex command using a prompt:
codex --sandbox workspace-write "{{prompt}}"
Run a prompt allowing Codex to edit files in the workspace:
git status
View Details ▼
git status
Show the changes to files in a Git repository.
List changed, added, and deleted files compared to the currently checked-out commit.
git status
Show untracked and changed files which are not yet added for commit:
git status {{[-s|--short]}}
Give output in short format:
git status {{[-sb|--short --branch]}}
Show output in short format along with branch info:
git
View Details ▼
git
Distributed version control system.
Some subcommands such as `commit`, `add`, `branch`, `switch`, `push`, etc. have their own usage documentation.
git init
Create an empty Git repository:
git clone {{https://example.com/repo.git}}
Clone a remote Git repository from the internet:
git status
View the status of the local repository:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
compact
View Details ▼
compact
Display or change the compression state of files and directories on NTFS partitions.
compact
Display the compression status of files in the current directory:
compact /c {{path\to\file}}
Compress a specific file:
compact /u {{path\to\file}}
Uncompress a specific file:
