CodeAlive MCP
OfficialEnhances GitHub Copilot in VS Code with CodeAlive's deep code understanding, allowing it to leverage semantic search and project-wide context for improved code suggestions.
Supports direct invocation via Python interpreter as an alternative configuration option for running the MCP server with AI clients.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CodeAlive MCPexplain how user authentication works in our backend"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CodeAlive MCP: Deepest Context Engine for your projects (especially for large codebases)
Connect your AI assistant to CodeAlive's powerful code understanding platform in seconds!
This MCP (Model Context Protocol) server enables AI clients like Claude Code, Cursor, Claude Desktop, Continue, VS Code (GitHub Copilot), Cline, Codex, OpenCode, SourceCraft Code Assistant, SourceCraft CLI, Zed, KodaCode, GigaCode, Qwen Code, Gemini CLI, Roo Code, Goose, Kilo Code, Windsurf, Kiro, Qoder, n8n, and Amazon Q Developer to access CodeAlive's advanced semantic code search and codebase interaction features.
What is CodeAlive?
CodeAlive is a Context Engine for large codebases, powered by graph-based retrieval and exposed through MCP. It gives AI agents like Cursor, Claude Code, Codex, and other MCP-compatible tools precise repository context instead of forcing them to read files blindly. In our RepoQA benchmark, CodeAlive + Qwen3.6 deep reached frontier-agent quality at ~25x lower model cost, and semantic search reduced captured tokens by 45%.
It's like Context7, but for your (large) codebases.
It allows AI-Coding Agents to:
Find relevant code faster with semantic search
Understand the bigger picture beyond isolated files
Provide better answers with full project context
Reduce costs and time by removing guesswork
Related MCP server: code-index-mcp
🛠 Available Tools
Once connected, you'll have access to these powerful tools:
get_data_sources- List your indexed repositories and workspacessemantic_search- Canonical semantic search across indexed artifactsgrep_search- Exact literal or regex text search inside file content, plus literal file-name/path matching (returns files likeForm.xmleven when their content never mentions the name), with line-level previews for content matchesget_repository_ontology- Get repository-level orientation for one selected repositoryget_file_tree- Inspect a bounded file tree for one repositoryread_file- Read a repository-relative file path, optionally with a line rangefetch_artifacts- Load the full source for relevant search hits (missing or inaccessible identifiers are reported back, not silently dropped)get_artifact_relationships- Expand call graph, inheritance, and reference relationships for one artifactget_artifact_query_schema- Inspect supported ArtifactQuery entities, fields, and examplesquery_artifact_metadata- Run read-only metadata analytics across selected repositorieschat- Stateless, slower synthesized codebase Q&A; call only when explicitly requested
🎯 Usage Examples
After setup, try these commands with your AI assistant:
"Show me all available repositories" → Uses
get_data_sources"Find authentication code in the user service" → Uses
semantic_search"Find the exact regex that matches JWT tokens" → Uses
grep_search"Explain how the payment flow works in this codebase" → Usually starts with
semantic_search/grep_search, then optionally useschat
semantic_search and grep_search should be the default tools for most agents. chat is a slower stateless synthesis fallback that can take substantially longer than retrieval, and is usually unnecessary when an agent can run a multi-step workflow with ontology, search, fetch/read, relationships, ArtifactQuery, and local file reads. If your agent supports subagents, the highest-confidence path is to delegate a focused subagent that orchestrates semantic_search and grep_search first.
📚 Agent Skill
For an even better experience, install the CodeAlive Agent Skill alongside the MCP server. The MCP server gives your agent access to CodeAlive's tools; the skill teaches it the best workflows and query patterns to use them effectively.
For most agents (Cursor, Copilot, Gemini CLI, Codex, and 30+ others) — install the skill:
npx skills add CodeAlive-AI/codealive-skills@codealive-context-engineFor Claude Code — install the plugin (recommended), which includes the skill plus Claude-specific enhancements:
/plugin marketplace add CodeAlive-AI/codealive-skills
/plugin install codealive@codealive-marketplaceTable of Contents
🚀 Quick Start (Remote)
The fastest way to get started - no installation required! Our remote MCP server at https://mcp.codealive.ai/api provides instant access to CodeAlive's capabilities.
Step 1: Get Your API Key
Sign up at https://app.codealive.ai/
Navigate to MCP & API
Click "+ Create API Key"
Copy your API key immediately - you won't see it again!
Step 2: Open Your Client Guide
Choose your client in the MCP integration guides and follow the current setup instructions there.
🚀 Quick Start (Agentic Installation)
You may ask your AI agent to install the CodeAlive MCP server for you.
Copy-paste the following prompt into your AI agent. Do not include your API key in the prompt:
Add the CodeAlive MCP server by following the guide for my client at https://docs.codealive.ai/integrations/mcp
Prefer the Remote HTTP option when available. Do not ask me to paste an API key into chat. When the key is needed, ask me to create a CodeAlive API key and copy it to my clipboard. After I confirm, insert it directly from the clipboard into the required secure configuration without displaying, echoing, logging, or exposing it in command arguments, command output, or model context. If you cannot safely use the clipboard without exposing the value, tell me exactly where to paste it myself.Then allow execution.
Restart your AI agent.
🤖 AI Client Integrations
Client-specific configuration is maintained in the CodeAlive documentation so file paths, transports, and authentication guidance stay current.
Start here: MCP integration guides
Client | Setup guide |
Claude Code | |
Claude Desktop | |
Cursor | |
Visual Studio Code | |
Windsurf | |
Cline | |
Continue | |
Codex | |
Gemini CLI | |
Amazon Q Developer | |
OpenCode | |
SourceCraft Code Assistant and SourceCraft CLI | |
Zed | |
ChatGPT | |
OpenClaw | |
KodaCode, GigaCode, Roo Code, Goose, Kilo Code, Qwen Code, Kiro, Qoder, JetBrains AI Assistant, n8n, and more |
For an unlisted client, use these generic connection details and adapt them to the client's MCP configuration format:
Endpoint:
https://mcp.codealive.ai/apiTransport: Streamable HTTP
Authentication header:
Authorization: Bearer YOUR_API_KEY_HERE
For a private deployment, replace the endpoint with your server's /api URL. See Self-Hosting for deployment guidance.
Connecting the server is half the setup. Coding agents may continue using their built-in search unless project instructions tell them to prefer CodeAlive. Ready-made rules for
AGENTS.md,CLAUDE.md, and client-specific instruction files are in Instructing Coding Agents.
🔧 Advanced: Local Development
For developers who want to customize or contribute to the MCP server.
Prerequisites
Python 3.11+
uv (recommended) or pip
Installation
# Clone the repository
git clone https://github.com/CodeAlive-AI/codealive-mcp.git
cd codealive-mcp
# Setup with uv (recommended)
uv venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
uv pip install -e .
# Or setup with pip
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -e .Local Server Configuration
After installing the server locally, point your MCP client at .venv/bin/python with src/codealive_mcp_server.py as the first argument and provide CODEALIVE_API_KEY in the process environment. Client-specific configuration belongs in the MCP integration guides.
Running HTTP Server Locally
# Start local HTTP server
export CODEALIVE_API_KEY="your_api_key_here"
python src/codealive_mcp_server.py --transport http --host localhost --port 8000
# Test health endpoint
curl http://localhost:8000/healthHTTP transport validates Host and browser Origin headers. Loopback hosts
(localhost, 127.0.0.1, ::1) work without extra configuration. For a
shared hostname, configure an exact allowlist:
export CODEALIVE_MCP_ALLOWED_HOSTS="mcp.codealive.yourcompany.com"
# Only for browser callers; ordinary MCP clients do not send Origin.
export CODEALIVE_MCP_ALLOWED_ORIGINS="https://mcp.codealive.yourcompany.com"
python src/codealive_mcp_server.py --transport http --host 0.0.0.0 --port 8000The equivalent repeatable CLI options are --allowed-host and
--allowed-origin. Do not use * for an Internet-facing server.
Testing Your Local Installation
After making changes, quickly verify everything works:
# Install the repository pre-push dependency audit once per clone
./scripts/setup-hooks.sh
# Quick smoke test (recommended)
make smoke-test
# Or run directly
python smoke_test.py
# With your API key for full testing
CODEALIVE_API_KEY=your_key python smoke_test.py
# Run unit tests
make unit-test
# Run all tests
make testThe smoke test verifies:
Server starts and connects correctly
All tools are registered
Each tool responds appropriately
Parameter validation works
Runs in ~5 seconds
🌐 Community Plugins
🚢 HTTP Deployment (Self-Hosted & Cloud)
Deploy the MCP server as an HTTP service for team-wide access or integration with self-hosted CodeAlive instances.
Deployment Options
The CodeAlive MCP server can be deployed as an HTTP service using Docker. This allows multiple AI clients to connect to a single shared instance, and enables integration with self-hosted CodeAlive deployments.
Docker Compose (Recommended)
Create a docker-compose.yml file based on our example:
# Download the example
curl -O https://raw.githubusercontent.com/CodeAlive-AI/codealive-mcp/main/docker-compose.example.yml
mv docker-compose.example.yml docker-compose.yml
# Edit configuration (see below)
nano docker-compose.yml
# Start the service
docker compose up -d
# Check health
curl http://localhost:8000/healthConfiguration Options:
For CodeAlive Cloud (default):
Remove
CODEALIVE_BASE_URLenvironment variable (uses defaulthttps://app.codealive.ai)Clients must provide their API key via
Authorization: Bearer YOUR_KEYheader
For Self-Hosted CodeAlive:
Set
CODEALIVE_BASE_URLto your CodeAlive instance URL (e.g.,https://codealive.yourcompany.com)Set
CODEALIVE_MCP_ALLOWED_HOSTSto the exact hostname clients use for this MCP serverClients must provide their API key via
Authorization: Bearer YOUR_KEYheader
See docker-compose.example.yml for the complete configuration template.
Connecting MCP Clients to Your Deployed Instance
Use the same generic connection details as CodeAlive Cloud, replacing the endpoint with your deployment's /api URL:
Endpoint:
https://your-server.example.com/apiTransport: Streamable HTTP
Authentication header:
Authorization: Bearer YOUR_API_KEY_HERE
For the exact configuration format, open the relevant client integration guide.
🪟 Windows & WSL
Use the client-specific documentation for Windows and WSL setup:
For self-hosted servers running in WSL2, Windows clients must be able to reach the server's /api endpoint. Use mirrored networking on supported Windows 11 versions or connect through the WSL2 VM address.
🐞 Troubleshooting
Quick Diagnostics
Test the hosted service:
curl https://mcp.codealive.ai/healthCheck your API key:
curl -H "Authorization: Bearer YOUR_API_KEY" https://app.codealive.ai/api/v1/data_sourcesEnable debug logging: Add
--debugto local server args
Common Issues
"Connection refused" → Check internet connection
"401 Unauthorized" → Verify your API key
"No repositories found" → Check API key permissions in CodeAlive dashboard
Client-specific logs → See your AI client's documentation for MCP logs
Windows / WSL Issues
docker: command not foundin WSL → Enable Docker Desktop WSL integration for your distro (Settings → Resources → WSL integration), or use the full path/usr/bin/dockerENOENTorspawn errorfornpx/python→ Non-interactive WSL shells don't inheritnvm/pyenvpaths. Use absolute paths in MCP configsConnection refusedto self-hosted server in WSL2 → WSL2 uses NAT networking;localhostdiffers between Windows and WSL2. Enable mirrored networking in.wslconfigor use the WSL2 VM IP (hostname -I)Claude Desktop can't connect to WSL MCP server → Claude Desktop doesn't support WSL subprocess spawning. Use Remote HTTP (
https://mcp.codealive.ai/api), Docker Desktop, or thewsl.exeproxy pattern (see Windows & WSL section)
Getting Help
📧 Email: support@codealive.ai
🐛 Issues: GitHub Issues
📦 Publishing to MCP Registry
For maintainers: see DEPLOYMENT.md for instructions on publishing new versions to the MCP Registry.
Privacy Policy
CodeAlive processes the repositories and queries you send through this extension in order to provide semantic search and codebase analysis. For complete privacy details, see CodeAlive Privacy Policy.
📄 License
MIT License - see LICENSE file for details.
Ready to supercharge your AI assistant with deep code understanding?
Get started now →
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Appeared in Searches
- A tool for searching code using semantic understanding
- Code intelligence tools for LLMs to understand codebase structure and locate functionality
- AI-powered IDEs for project analysis and development
- Using Qdrant vector database for code indexing
- Finding the Best Memory Compression Policies (MCPs) for Optimizing Limited Context Window in Claude Code
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/CodeAlive-AI/codealive-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server