DevBoxer CLI & MCP
Command-line interface for interacting with DevBoxer that can also be used as an MCP server
The DevBoxer CLI let's you interact with DevBoxer directly from the command line. Create tasks, review changes, pull tasks to pick up where you left off, all from your terminal.
Requirements
- macOS, Linux, or WSL (Windows Subsystem for Linux)
- Node.js 18+ or newer
- npm package manager (bun is not currently supported)
Installation
Note: Currently only npm is supported for installing the DevBoxer CLI.
npm install -g @devboxer/cliAuthentication
devboxer authThis will:
~/.devboxer/config.jsonYou can override the default settings directory by setting the DEVBOXER_SETTINGS_DIR environment variable before running the CLI. For example:
export DEVBOXER_SETTINGS_DIR=~/.config/devboxer
devboxer authCommands
devboxer create
Create a new task in DevBoxer with a message.
The CLI has a daily limit of 50 tasks per user. This limit resets every 24 hours.
# Create a task in the current repository and branch
devboxer create "Fix the login bug"
# Specify a different repository
devboxer create "Add new feature" --repo owner/repo
# Use a specific base branch
devboxer create "Update documentation" --branch develop
# Use existing branch without creating a new one
devboxer create "Quick fix" --no-new-branch
# Use a specific AI model
devboxer create "Refactor code" --model opus
# Create a task in plan mode (for complex tasks requiring planning)
devboxer create "Build new authentication system" --mode planOptions
-r, --repo <repo>: GitHub repository (default: current repository)-b, --branch <branch>: Base branch name (default: current branch, falls back to main)--no-new-branch: Don't create a new branch (default: creates new branch)-M, --mode <mode>: Whether to create tasks inplanmode (require approval before making changes) orexecutionmode. Only available with the Claude Code agent (default: execute)-m, --model <model>: AI model to use (default: last model you selected in the dashboard)
Available models:
sonnethaikuopusgpt-5.2(orgpt-5.2-medium)gpt-5.2-lowgpt-5.2-highgpt-5.1(orgpt-5.1-medium)gpt-5.1-lowgpt-5.1-highgpt-5.1-codex-max(orgpt-5.1-codex-max-medium)gpt-5.1-codex-max-lowgpt-5.1-codex-max-highgpt-5.1-codex-max-xhighgpt-5.1-codex-lowgpt-5.1-codex-medium(orgpt-5.1-codex)gpt-5.1-codex-highgpt-5(orgpt-5-medium)gpt-5-lowgpt-5-highgpt-5-codex-lowgpt-5-codex-medium(orgpt-5-codex)gpt-5-codex-highgemini-3-progemini-2.5-proopencode/grok-code(orgrok-code)opencode/qwen3-coder(orqwen3-coder)opencode/kimi-k2(orkimi-k2)opencode/glm-4.6(orglm-4.6)opencode/gemini-2.5-proamp
devboxer pull
Pull tasks from DevBoxer to your local machine:
# Interactive mode - select from recent tasks
devboxer pull
# Pull a specific task by ID
devboxer pull <taskId>
# Pull and automatically launch Claude Code
devboxer pull <taskId> --resumeGetting the task ID:
You can find the task ID at the end of the URL when viewing a task in
DevBoxer. For example, in https://www.devboxer.com/tasks/abc123-def456, the
task ID is abc123-def456.
Options
-r, --resume: Automatically launch Claude Code after pulling
Task Display
Once selected, each task shows:
Task titleBranch nameRepositoryPR #(if available)
devboxer list
List all tasks in a non-interactive format:
# List all tasks (automatically filters by current repo when inside a Git repository)
devboxer listTask Display
Each task shows:
Task IDNameBranchRepositoryPR #(if available)
A count of your active tasks is returned after all of your tasks are listed.
Example Output
Task ID abc123def456
Name Fix login bug
Branch devboxer/fix-login
Repository myorg/myrepo
PR Number #123
Task ID def789ghi012
Name Add dark mode
Branch devboxer/dark-mode
Repository myorg/myrepo
PR Number N/A
Total: 2 tasksdevboxer mcp
Run an MCP (Model Context Protocol) server for the git repository:
# Run MCP server for current directory
devboxer mcpClaude Code Integration
You can add the DevBoxer MCP server to your local Claude Code instance to enable direct interaction with DevBoxer tasks from within Claude:
claude mcp add devboxer -- devboxer mcpThis integration provides Claude Code with the following capabilities:
devboxer_list: List all your DevBoxer tasks directly from Claudedevboxer_create: Create new tasks without leaving Claude Codedevboxer_pull: Pull task session data to continue work
The MCP server acts as a bridge between Claude Code and DevBoxer, allowing you to manage tasks using natural language commands within your AI coding sessions.