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-code2. 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
- Open a terminal tab in Blueberry
- Run
claudeto start Claude Code - 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 stateblueberry_open_file- Open a file in the editorblueberry_open_preview- Open a URL in the previewblueberry_send_terminal_command- Run terminal commandsblueberry_capture_webview_screenshot- Take screenshots
See the Blueberry MCP for the complete API.
Next Steps
- Blueberry MCP - Full API documentation
- Best Practices - Tips for effective prompting
Last updated on