drio
Open app

🏗️ ClaudeHopper - AI-Powered Construction Document Assistant

Source

A macOS menu bar application that helps manage MCP (Model Context Protocol) servers for Claude Desktop.

Catalog onlyCatalog onlySTDIO

Overview

ClaudeHopper is a macOS menu bar application designed to manage MCP (Model Context Protocol) servers for Claude Desktop, enhancing its capabilities.

To use ClaudeHopper, download and install the application on macOS, then launch it to manage your MCP servers directly from the menu bar.

  • Toggle MCP servers on/off from the menu bar. - Discover available MCP servers from authoritative sources. - Fetch and manage server configurations. - Import server configurations from the clipboard. - User-friendly interface for easy server management.
  1. Managing multiple MCP servers for enhanced functionality in Claude Desktop.
  2. Quickly toggling server states based on user needs.
  3. Importing server configurations for seamless integration.

Add to your AI client

Use these steps to connect 🏗️ ClaudeHopper - AI-Powered Construction Document Assistant in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "claudehopper-arborist-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claudehopper-arborist-ai"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "claudehopper-arborist-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claudehopper-arborist-ai"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "claudehopper-arborist-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claudehopper-arborist-ai"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "claudehopper-arborist-ai": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claudehopper-arborist-ai"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "claudehopper-arborist-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claudehopper-arborist-ai"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "claudehopper-arborist-ai": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-claudehopper-arborist-ai"
      ]
    }
  }
}

FAQ

What is MCP?

MCP (Model Context Protocol) standardizes how applications provide context to Large Language Models (LLMs).

What are the prerequisites for using ClaudeHopper?

You need macOS 11.0 or later and Claude Desktop installed.

Is ClaudeHopper free to use?

Yes, ClaudeHopper is free to use and open-source.