MCP Usage
Using Qodo Aware as an MCP
What is MCP?
MCP stands for Model Context Protocol. It's an open protocol that standardizes how tools and services expose structured context to AI models.
It defines a consistent way for applications to communicate with AI, making it easier to integrate external systems like version control, issue trackers, or shell environments into your workflow.
Why use Qodo Aware as an MCP server?
Qodo Aware offers a deeply indexed, AI-enhanced view of your organization’s codebase.
Using it as an MCP server means:
You can connect products like Claude Desktop, Cursor, or others directly to your remote codebase via Qodo Aware.
You get consistent, organization-aware responses, grounded in your real repositories, services, and documentation.
You benefit from Qodo Aware’s agentic reasoning and advanced retrieval, even outside the Qodo interface.
Eliminate context switching—your tools now understand your code as if a senior engineer were helping.
Setup and Installation
Before you start
Contact Qodo to receive your client domain and token.
These are necessary for setting up Qodo Aware as an MCP.
Requirements
Node.js installed (v18.0.0 and above)
Cursor, Windsurf, Claude Desktop or another MCP Client
Installation
You can add Qodo Aware as an MCP server to any product that supports the Model Context Protocol (MCP).
Check out our open source repository:
Installation steps vary by tool:
Configuration
{
"mcpServers": {
"remote-codebase-search": {
"command": "npx",
"args": [
"mcp-remote",
"https://<QODO_AWARE_CLIENT_DOMAIN>/mcp/",
"--header",
"Authorization:${AUTH_TOKEN}"
],
"env": {
"AUTH_TOKEN": "Bearer <QODO_AWARE_TOKEN>"
}
}
}
}
Last updated
Was this helpful?