mini-claude-rust

realorange1994/mini-claude-rust
★ 0 stars Rust 🤖 AI/LLM Updated today
A lightweight, terminal-based AI coding assistant written in Rust that replicates the Claude Code experience with streaming output, tool execution, permission controls, MCP server integration, and skills support — optimized for fast, internationalized terminal interactions.
View on GitHub →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mini-claude-rust": {
      "command": "cargo",
      "args": [
        "run",
        "--",
        "mini-claude-rust"
      ]
    }
  }
}

README Excerpt

A lightweight, distilled implementation of Claude Code's agent loop framework written in Rust. miniClaudeCode-rust is a minimal AI agent framework that implements the core agentic loop pattern similar to Claude Code. It provides a tool-use paradigm where an LLM can execute various tools to accomplish complex tasks.