Skip to Content
Getting StartedAgent Setup

Agent Setup

Set up your preferred AI coding agent to work inside Blueberry.

Supported Agents

Blueberry works with any terminal-based coding agent. Here are some popular options:

Claude Code

npm install -g @anthropic-ai/claude-code

Once installed, run claude in a Blueberry terminal to start.

Codex

npm install -g @openai/codex

Once installed, run codex in a Blueberry terminal to start.

Gemini CLI

npm install -g @google/gemini-cli

Once installed, run gemini in a Blueberry terminal to start.

Other Agents

Any coding agent that runs in a terminal works with Blueberry. Just install it and run it in a Blueberry terminal tab.

Using Your Agent

  1. Open a terminal tab in Blueberry
  2. Run your agent’s CLI command
  3. Start describing what you want to build or change

Your agent can edit files, run commands, and see your project. The editor and preview panels update as changes are made.

MCP Integration

MCP (Model Context Protocol) gives your agent deeper access to the Blueberry workspace. With MCP, your agent can:

  • View open files, terminal output, and browser content
  • Open files and navigate to specific lines
  • Capture screenshots and page content from the preview
  • Run terminal commands in Blueberry

To configure the Blueberry MCP server, add it to your agent’s MCP configuration:

{ "mcpServers": { "blueberry": { "command": "blueberry-mcp" } } }

See the Blueberry MCP reference for the full list of available tools.

Last updated on