Guide for Claude Code
Integrate Claude Code with AI Architect for more accurate, codebase-aware AI assistance.
Use Bito's AI Architect with Claude Code to enhance your AI-powered coding experience.
Once connected via MCP (Model Context Protocol), Claude Code can leverage AI Architect’s deep contextual understanding of your project, enabling more accurate code suggestions, explanations, and code insights.
Prerequisites
Contact Bito support team at [email protected] to have your repositories indexed. You will get an MCP server URL and Auth token from Bito.
Download BitoAIArchitectGuidelines.md file. You will need to copy/paste the content from this file later when configuring AI Architect.
Set up AI Architect
Follow the setup instructions for your operating system:
Windows
Create MCP configuration file
Navigate into the
.claudefolderRight-click in empty space → New > Text Document
Name it:
mcp.jsonOpen with Notepad or VS Code
Paste the following:
{
"mcpServers": {
"Bito": {
"transport": "http",
"url": "Enter_MCP_Server_URL_Here", // e.g. "https://mcp.bito.ai/123456/mcp"
"headers": {
"Authorization": "Enter_Auth_Token_Here" // e.g. "Bearer xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
},
"timeout": 60000,
"disabled": false
}
}
}Save the file (Ctrl + S)
macOS
Create MCP configuration file
In Terminal, run:
nano ~/.claude/mcp.jsonPaste the following:
{
"mcpServers": {
"Bito": {
"transport": "http",
"url": "Enter_MCP_Server_URL_Here", // e.g. "https://mcp.bito.ai/123456/mcp"
"headers": {
"Authorization": "Enter_Auth_Token_Here" // e.g. "Bearer xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
},
"timeout": 60000,
"disabled": false
}
}
}Save: Press
Ctrl + O, then press Enter, thenCtrl + X
Linux
Create MCP configuration file
In Terminal, run:
nano ~/.claude/mcp.jsonPaste:
{
"mcpServers": {
"Bito": {
"transport": "http",
"url": "Enter_MCP_Server_URL_Here", // e.g. "https://mcp.bito.ai/123456/mcp"
"headers": {
"Authorization": "Enter_Auth_Token_Here" // e.g. "Bearer xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
},
"timeout": 60000,
"disabled": false
}
}
}Save:
Ctrl + O, Enter,Ctrl + X
Last updated

