Guide for Cursor
Integrate Cursor with AI Architect for more accurate, codebase-aware AI assistance.
Use Bito's AI Architect with Cursor to enhance your AI-powered coding experience.
Once connected via MCP (Model Context Protocol), Cursor 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/update MCP configuration
In
%APPDATA%\Cursor, find or create:cursor_desktop_config.jsonOpen with Notepad or VS Code
Add or update the
mcpServerssection:
{
"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/update MCP configuration
Run:
nano ~/.cursor/cursor_desktop_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/update MCP configuration
Run:
nano ~/.cursor/cursor_desktop_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

