Context engine for large codebases, exposed through MCP. Gives AI coding agents precise repository context; benchmarked at frontier-agent quality with ~25x lower model cost and 45% fewer tokens with semantic search.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Mature repo (>1y old)
claude mcp add codealive-mcp -- npx -y skills{
"mcpServers": {
"codealive-mcp": {
"command": "npx",
"args": ["-y", "skills"],
"env": {
"CODEALIVE_API_KEY": "<codealive_api_key>"
}
}
}
}CODEALIVE_API_KEYResumen de MCP Servers
# CodeAlive MCP: Deepest Context Engine for your projects (especially for large codebases) <!-- MCP Server Name: io.github.codealive-ai.codealive-mcp --> [](https://www.codealive.ai/) **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 ## 🛠 Available Tools Once connected, you'll have access to these powerful tools: 1. **`get_data_sources`** - List your indexed repositories and workspaces 2. **`semantic_search`** - Canonical semantic search across indexed artifacts 3. **`grep_search`** - Exact literal or regex text search inside file content, plus literal file-name/path matching (returns files like `Form.xml` even when their content never mentions the name), with line-level previews for content matches 4. **`get_repository_ontology`** - Get repository-level orientation for one selected repository 5. **`get_file_tree`** - Inspect a bounded file tree for one repository 6. **`read_file`** - Read a repository-relative file path, optionally with a line range 7. **`fetch_artifacts`** - Load the full source for relevant search hits (missing or inaccessible identifiers are reported back, not silently dropped) 8. **`get_artifact_relationships`** - Expand call graph, inheritance, and reference relationships for one artifact 9. **`get_artifact_query_schema`** - Inspect supported ArtifactQuery entities, fields, and examples 10. **`query_artifact_metadata`** - Run read-only metadata analytics across selected repositories 11. **`chat`** - 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 uses `chat` `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](https://github.com/CodeAlive-AI/codealive-skills) 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](https://agentskills.io/)) — install the skill: ```bash npx skills add CodeAlive-AI/codealive-skills@codealive-context-engine ``` **For 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-marketplace ``` ## Table of Contents * [Agent Skill](#-agent-skill) * [Quick Start (Remote)](#-quick-start-remote) * [AI Client Integrations](#-ai-client-integrations) * [Advanced: Local Development](#-advanced-local-development) * [Community Plugins](#-community-plugins) * [HTTP Deployment (Self-Hosted & Cloud)](#-http-deployment-self-hosted--cloud) * [Windows & WSL](#-windows--wsl) * [Available Tools](#-available-tools) * [Usage Examples](#-usage-examples) * [Troubleshooting](#-troubleshooting) * [Publishing to MCP Registry](#-publishing-to-mcp-registry) * [License](#-license) ## 🚀 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 1. Sign up at [https://app.codealive.ai/](https://app.codealive.ai/) 2. Navigate to **MCP & API** 3. Click **"+ Create API Key"** 4. 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](https://docs.codealive.ai/integrations/mcp) 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. 1. 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. 2. 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](https://docs.codealive.ai/integrations/mcp) | Client | Setup guide | |---|---| | Claude Code | [Claude Code](https://docs.codealive.ai/integrations/mcp/claude-code) | | Claude Desktop | [Claude Desktop](https://docs.codealive.ai/integrations/mcp/claude-desktop) | | Cursor | [Cursor](https://docs.codealive.ai/integrations/mcp/cursor) | | Visual Studio Code | [VS Code](https://docs.codealive.ai/integrations/mcp/vscode) | | Windsurf | [Windsurf](https://docs.codealive.ai/integrations/mcp/windsurf) | | Cline | [Cline](https://docs.codealive.ai/integrations/mcp/cline) | | Continue | [Continue](https://docs.codealive.ai/integrations/mcp/continue) | | Codex | [Codex](https://docs.codealive.ai/integrations/mcp/codex) | | Gemini CLI | [Gemini CLI](https://docs.codealive.ai/integrations/mcp/gemini-cli) | | Amazon Q Developer | [Amazon Q](https://docs.codealive.ai/integrations/mcp/amazon-q) | | OpenCode | [OpenCode](https://docs.codealive.ai/integrations/mcp/opencode) | | SourceCraft Code Assistant and SourceCraft CLI | [SourceCraft](https://docs.codealive.ai/integrations/mcp/sourcecraft) | | Zed | [Zed](https://docs.codealive.ai/integrations/mcp/zed) | | ChatGPT | [ChatGPT](https://docs.codealive.ai/integrations/mcp/chatgpt) | | OpenClaw | [OpenClaw](https://docs.codealive.ai/integrations/mcp/openclaw) | | KodaCode, GigaCode, Roo Code, Goose, Kilo Code, Qwen Code, Kiro, Qoder, JetBrains AI Assistant, n8n, and more | [Other agents](https://docs.codealive.ai/integrations/mcp/other-agents) | For an unlisted client, use these generic connection details and adapt them to the client's MCP configuration format: - **Endpoint:** `https://mcp.codealive.ai/api` - **Transport:** 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](https://docs.codealive.ai/integrations/mcp/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](https://docs.codealive.ai/guides/instructing-agents). --- ## 🔧 Advanced: Local Development **For developers who want to customize or contribute to the MCP server.** ### Prerequisites * Python 3.11+ * [uv](https://github.com/astral-sh/uv) (recommended) or pip ### Installation ```bash # 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](https://docs.codealive.ai/
Lo que la gente pregunta sobre codealive-mcp
¿Qué es CodeAlive-AI/codealive-mcp?
+
CodeAlive-AI/codealive-mcp es mcp servers para el ecosistema de Claude AI. Context engine for large codebases, exposed through MCP. Gives AI coding agents precise repository context; benchmarked at frontier-agent quality with ~25x lower model cost and 45% fewer tokens with semantic search. Tiene 85 estrellas en GitHub y se actualizó por última vez today.
¿Cómo se instala codealive-mcp?
+
Puedes instalar codealive-mcp clonando el repositorio (https://github.com/CodeAlive-AI/codealive-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.
¿Es seguro usar CodeAlive-AI/codealive-mcp?
+
Nuestro agente de seguridad ha analizado CodeAlive-AI/codealive-mcp y le ha asignado un Trust Score de 92/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.
¿Quién mantiene CodeAlive-AI/codealive-mcp?
+
CodeAlive-AI/codealive-mcp es mantenido por CodeAlive-AI. La última actividad registrada en GitHub es de today, con 0 issues abiertos.
¿Hay alternativas a codealive-mcp?
+
Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.
Despliega codealive-mcp en tu cloud
Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.
¿Mantienes este repo? Añade un badge a tu README
Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.
[](https://claudewave.com/repo/codealive-ai-codealive-mcp)<a href="https://claudewave.com/repo/codealive-ai-codealive-mcp"><img src="https://claudewave.com/api/badge/codealive-ai-codealive-mcp" alt="Featured on ClaudeWave: CodeAlive-AI/codealive-mcp" width="320" height="64" /></a>Más MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
The fastest path to AI-powered full stack observability, even for lean teams.
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl!
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface