Guide for Claude Desktop
Integrate Claude Desktop with AI Architect for more accurate, codebase-aware AI assistance.
Use Bito's AI Architect with Claude Desktop to enhance your AI-powered coding experience.
Once connected via MCP (Model Context Protocol), Claude Desktop can leverage AI Architect's deep contextual understanding of your project, enabling more accurate code suggestions, explanations, and code insights.
Prerequisites
Follow the AI Architect installation instructions. Upon successful setup, you will receive a Bito MCP URL and Bito MCP Access Token that you need to enter in your coding agent.
Download BitoAIArchitectGuidelines.md file. You will need to copy/paste the content from this file later when configuring AI Architect.
Note: This file contains best practices, usage instructions, and prompting guidelines for the Bito AI Architect MCP server. The setup will work without this file, but including it helps AI tools interact more effectively with the Bito AI Architect MCP server.
Claude Desktop installed - Download and install Claude Desktop from claude.ai/download if you haven't already.
Node.js 20.18.1 or higher - Required for the
mcp-remoteproxymacOS:
brew install node@20 # Or use nvm: nvm install 20 && nvm use 20Windows: Download from https://nodejs.org/ (download 20.x LTS)
Linux (Ubuntu/Debian):
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash - sudo apt-get install -y nodejsVerify installation:
node --version # Should show v20.x.x or higher npx --version
Note: Claude Desktop uses OAuth 2.1 authentication via the mcp-remote proxy, so you don't need to manually manage access tokens. Your email will be collected during the OAuth consent flow.
Set up AI Architect
Claude Desktop uses claude_desktop_config.json with the mcp-remote proxy for OAuth-enabled remote servers.
Claude Desktop supports both local MCP servers and remote HTTP servers. For Bito AI Architect (a remote OAuth server), we use the mcp-remote proxy which handles the OAuth flow automatically.
Open configuration file
macOS:
Open Claude Desktop
Click Claude menu β Settings β Developer tab
Click Edit Config to open
claude_desktop_config.json
Or manually open: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
Open Claude Desktop
Click File β Settings β Developer tab
Click Edit Config to open
claude_desktop_config.json
Or manually open: %APPDATA%\Claude\claude_desktop_config.json
Add AI Architect configuration
Add the following to your claude_desktop_config.json:
Replace
<Your-Bito-MCP-URL>with the Bito MCP URL you received after completing the AI Architect setup.For the Bito-hosted AI Architect, use the following URL format:
https://mcp.bito.ai/<Your-Bito-Workspace-ID>/mcpReplace
<Your-Bito-Workspace-ID>with your actual Bito workspace ID, which you can find after logging into your Bito account at alpha.bito.ai
If you already have other MCP servers configured, add BitoAIArchitect to the existing mcpServers object:
Replace
<Your-Bito-MCP-URL>with the Bito MCP URL you received after completing the AI Architect setup.For the Bito-hosted AI Architect, use the following URL format:
https://mcp.bito.ai/<Your-Bito-Workspace-ID>/mcpReplace
<Your-Bito-Workspace-ID>with your actual Bito workspace ID, which you can find after logging into your Bito account at alpha.bito.ai
Windows-specific configuration:
On Windows, you may need to use the cmd wrapper:
Replace
<Your-Bito-MCP-URL>with the Bito MCP URL you received after completing the AI Architect setup.For the Bito-hosted AI Architect, use the following URL format:
https://mcp.bito.ai/<Your-Bito-Workspace-ID>/mcpReplace
<Your-Bito-Workspace-ID>with your actual Bito workspace ID, which you can find after logging into your Bito account at alpha.bito.ai
Complete OAuth authorization
On first use, mcp-remote will open your browser to complete OAuth:
A browser window opens showing the Bito Authorization page
Review the requested permissions
Enter your email address (required for tracking)
Click "Authorize" or "Allow"
Return to Claude Desktop - the connection is now active
Troubleshooting Claude Desktop
Server not appearing:
Verify JSON syntax in config file
Ensure Node.js 20+ is installed:
node --versionCheck that
npxis available:npx --versionFully quit and restart Claude Desktop
OAuth flow not starting:
Ensure your browser is set as default
Allow pop-ups for the OAuth flow
Check firewall settings
"mcp-remote not found" error:
Ensure Node.js is in your PATH
Try running
npx -y mcp-remote --helpin terminal to verify it works
Connection shows "Disconnected":
OAuth tokens may have expired - restart Claude Desktop to re-authorize
Check your internet connection
Verify the Workspace ID is correct
Last updated

