← ClaudeAtlas

setuplisted

Install and configure llm-box, including the MCP server connection for Claude Code.
alib8b8/llm-box · ★ 10 · AI & Automation · score 72
Install: claude install-skill alib8b8/llm-box
## Overview This skill installs and configures llm-box, an AI-powered terminal workflow engine, and sets up the MCP server connection for Claude Code integration. It handles binary installation, PATH configuration, and MCP server setup. ## Prerequisites - Go 1.21+ (for building from source) OR a pre-built binary - Git (for cloning or installing) - Bash shell (Linux/macOS) or PowerShell (Windows) ## Instructions ### Step 1: Install llm-box Choose one of the following installation methods: **Option 1: Install Script (Linux/macOS)** ```bash curl -sL https://raw.githubusercontent.com/alib8b8/llm-box/main/install.sh -o install.sh bash install.sh ``` **Option 2: Go Install** ```bash go install github.com/alib8b8/llm-box/cmd/llm-box@latest ``` **Option 3: Download from Releases** Download the binary for your platform: https://github.com/alib8b8/llm-box/releases ### Step 2: Verify Installation ```bash llm-box --version llm-box list ``` ### Step 3: Configure MCP Server The MCP server is pre-configured in `.mcp.json`: ```json { "mcpServers": { "llm-box": { "type": "stdio", "command": "llm-box", "args": ["--mcp-server"] } } } ``` Claude Code will automatically start the MCP server when the plugin is activated. ### Step 4: Create Configuration (Optional) Create `~/.llm-box/config.yaml`: ```yaml safe_mode: false default_model: "ollama://llama3" api_keys: openai: "your-api-key" deepseek: "your-api-key" ``` ## Output After successful set