Guide for Windsurf
Integrate Windsurf with AI Architect for more accurate, codebase-aware AI assistance.
Use Bito's AI Architect with Windsurf to enhance your AI-powered coding experience.
Once connected via MCP (Model Context Protocol), Windsurf 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
In the
windsurffolder, create:mcp_config.jsonOpen with Notepad or VS Code
Paste:
{
"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
macOS
Create MCP configuration file
Run:
nano ~/.codeium/windsurf/mcp_config.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
Linux
Create MCP configuration file
Run:
nano ~/.codeium/windsurf/mcp_config.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

