| name | setup |
| description | Install and configure llm-box, including the MCP server connection for Claude Code. |
| invocation | user |
llm-box Setup
Prerequisites
- Go 1.21+ (for building from source) OR a pre-built binary
Installation
Option 1: Install Script (Linux/macOS)
curl -sL https://raw.githubusercontent.com/alib8b8/llm-box/main/install.sh -o install.sh
bash install.sh
Option 2: Go Install
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
Verify Installation
llm-box list
MCP Server
The plugin includes a pre-configured MCP server in .mcp.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.
Configuration
Create ~/.llm-box/config.yaml:
safe_mode: false
default_model: "ollama://llama3"
api_keys:
openai: "your-api-key"
deepseek: "your-api-key"
Troubleshooting
- Check if llm-box is in PATH:
which llm-box
- Verify version:
llm-box --version
- Test MCP server:
llm-box --mcp-server