Skip to Content
Getting StartedClaude Setup

Claude Setup

Configure Claude Code to work with Blueberry’s MCP integration.

What is MCP?

MCP (Model Context Protocol) allows Claude to see and interact with your Blueberry workspace. Claude can:

  • View your code, terminal output, and browser content
  • Open files and navigate to specific lines
  • Run terminal commands
  • Capture screenshots and page content

Setup Steps

1. Install Claude Code

If you haven’t already, install Claude Code:

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

2. Add Blueberry MCP Server

Add the Blueberry MCP server to your Claude Code configuration. Edit ~/.claude/config.json:

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

3. Use Claude in Blueberry Terminal

  1. Open a terminal tab in Blueberry
  2. Run claude to start Claude Code
  3. Claude now has full context of your workspace

Verify Integration

Ask Claude to describe what it sees:

What files are open in my editor right now?

Claude should be able to see your open files, terminal tabs, and preview browser.

Available MCP Tools

Claude has access to these Blueberry-specific tools:

  • blueberry_get_context - Get current workspace state
  • blueberry_open_file - Open a file in the editor
  • blueberry_open_preview - Open a URL in the preview
  • blueberry_send_terminal_command - Run terminal commands
  • blueberry_capture_webview_screenshot - Take screenshots

See the Blueberry MCP for the complete API.

Next Steps

Last updated on