Standalone deployment
Run AI Architect privately on your own workstation. Setup takes about 5 to 10 minutes.
Your AI coding agent connects automatically during installation.
Before you begin
Have the following ready. See Prerequisites & requirements for creation links and details.
Bito API key
Git provider token (PAT)
GitHub, GitLab, Bitbucket, or Azure DevOps
Your email (optional)
Associates the automatic coding-agent registration with you
Docker Desktop 20.10+
With Compose v2
Free ports
5001-5006 on localhost
Pre-seed your configuration (optional)
To install without prompts, provide your configuration before running the installer. Skip this step to install interactively, and the installer asks for each value instead.
mkdir -p ~/.bitoarchcat > ~/.bitoarch/install.yaml <<'EOF'
bito_api_key: "<your-bito-api-key>"
git:
provider: github
access_token: "<your-git-pat>"
user_email: "you@company.com" # associates coding-agent registration with you
EOFStart from the full template, install.default.yaml, to pre-seed any option: LLM provider keys, Insights, custom ports, and more.
Install and index
curl -fsSL https://aiarchitect.bito.ai/standalone/install.sh | bashIf you pre-seeded your configuration, the installer runs without prompts. Otherwise, it asks for your Bito API key and Git provider token.
The installer validates prerequisites, deploys the services, then fetches your repository list from your Git provider and asks how to proceed:
Auto (recommended): saves the fetched repository list and starts indexing automatically (about 3-10 minutes per repository).
Manual: follow the steps shown in the terminal to complete configuration. In summary:
bitoarch config edit repos(review or trim the list, as each indexed repository consumes LLM tokens)bitoarch add-repos(apply the list)bitoarch index-repos(start indexing)
On success, the installer prints your MCP URL and access token.
Your AI coding agent connects automatically. Standalone serves MCP over HTTPS at https://localhost:5001/mcp with a locally trusted certificate, and the installer registers this endpoint in every detected AI coding agent (Claude Code, Cursor, Windsurf, VS Code, Junie, and JetBrains AI Assistant). During installation you are asked for an email to associate with this registration (or pre-seed user_email); press Enter to skip it. Restart each tool when prompted. No further setup is needed.
bitoarch mcp-info # view the MCP URL, token, and authentication mode anytimeNext steps
Optional: connect the AI Code Review Agent for codebase-aware reviews, or enable Insights.
Last updated

