Server data from the Official MCP Registry
Semantic code search and analysis from CodeAlive for AI assistants and agents.
Semantic code search and analysis from CodeAlive for AI assistants and agents.
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
1 tool verified ยท Open access ยท No issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Set these up before or after installing:
Environment variable: CODEALIVE_API_KEY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-codealive-ai-codealive-mcp": {
"env": {
"CODEALIVE_API_KEY": "your-codealive-api-key-here"
},
"args": [
"codealive-mcp"
],
"command": "uvx"
}
}
}From the project's GitHub README.
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, 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.
The most accurate and comprehensive Context Engine as a service, optimized for large codebases, powered by advanced GraphRAG and accessible via MCP. It enriches the context for AI agents like Cursor, Claude Code, Codex, etc., making them 35% more efficient and up to 84% faster.
It's like Context7, but for your (large) codebases.
It allows AI-Coding Agents to:
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 text or regex search with line-level matchesfetch_artifacts - Load the full source for relevant search hitsget_artifact_relationships - Expand call graph, inheritance, and reference relationships for one artifactchat - Slower synthesized codebase Q&A, typically only after searchcodebase_search - Deprecated legacy semantic search alias kept for backward compatibilitycodebase_consultant - Deprecated alias for chatAfter setup, try these commands with your AI assistant:
get_data_sourcessemantic_searchgrep_searchsemantic_search/grep_search, then optionally uses chatsemantic_search and grep_search should be the default tools for most agents. chat is a slower synthesis fallback, can take up to 30 seconds, and is usually unnecessary when an agent can run a multi-step workflow with search, fetch, relationships, 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.
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-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
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.
Select your preferred AI client below for instant setup:
You may ask your AI agent to install the CodeAlive MCP server for you.
Here is CodeAlive API key: PASTE_YOUR_API_KEY_HERE
Add the CodeAlive MCP server by following the installation guide from the README at https://raw.githubusercontent.com/CodeAlive-AI/codealive-mcp/main/README.md
Find the section "AI Client Integrations" and locate your client (Claude Code, Cursor, Gemini CLI, etc.). Each client has specific setup instructions:
- For Gemini CLI: Use the one-command setup with `gemini mcp add`
- For Claude Code: Use `claude mcp add` with the --transport http flag
- For other clients: Follow the configuration snippets provided
Prefer the Remote HTTP option when available. If API key is not provided above, help me issue a CodeAlive API key first.
Then allow execution.
Option 1: Remote HTTP (Recommended)
claude mcp add --transport http codealive https://mcp.codealive.ai/api --header "Authorization: Bearer YOUR_API_KEY_HERE"
Option 2: Docker (STDIO)
claude mcp add codealive-docker /usr/bin/docker run --rm -i -e CODEALIVE_API_KEY=YOUR_API_KEY_HERE ghcr.io/codealive-ai/codealive-mcp:main
Replace YOUR_API_KEY_HERE with your actual API key.
Option 1: Remote HTTP (Recommended)
Cmd+, or Ctrl+,){
"mcpServers": {
"codealive": {
"url": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Option 2: Docker (STDIO)
{
"mcpServers": {
"codealive": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
OpenAI Codex CLI supports MCP via ~/.codex/config.toml.
~/.codex/config.toml (Docker stdio โ recommended)
[mcp_servers.codealive]
command = "docker"
args = ["run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"]
Experimental: Streamable HTTP (requires [features].rmcp_client = true)
Note: Streamable HTTP support requires
rmcp_client = trueunder a[features]section in your Codex configuration.
[mcp_servers.codealive]
url = "https://mcp.codealive.ai/api"
headers = { Authorization = "Bearer YOUR_API_KEY_HERE" }
One command setup (complete):
gemini mcp add --transport http secure-http https://mcp.codealive.ai/api --header "Authorization: Bearer YOUR_API_KEY_HERE"
Replace YOUR_API_KEY_HERE with your actual API key. That's it - no config files needed! ๐
Option 1: Remote HTTP (Recommended)
.continue/config.yaml in your project or ~/.continue/config.yamlmcpServers:
- name: CodeAlive
type: streamable-http
url: https://mcp.codealive.ai/api
requestOptions:
headers:
Authorization: "Bearer YOUR_API_KEY_HERE"
Option 2: Docker (STDIO)
mcpServers:
- name: CodeAlive
type: stdio
command: docker
args:
- run
- --rm
- -i
- -e
- CODEALIVE_API_KEY=YOUR_API_KEY_HERE
- ghcr.io/codealive-ai/codealive-mcp:main
Option 1: Remote HTTP (Recommended)
Note: VS Code supports both Streamable HTTP and SSE transports, with automatic fallback to SSE if Streamable HTTP fails.
Ctrl+Shift+P or Cmd+Shift+P){
"servers": {
"codealive": {
"type": "http",
"url": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Option 2: Docker (STDIO)
Create .vscode/mcp.json in your workspace:
{
"servers": {
"codealive": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
Option 1: Extension bundle .mcpb (Recommended)
The .mcpb bundle gives you one-click install, secure token storage, and self-hosted baseUrl configuration โ no Docker or CLI required.
codealive-mcp.mcpb from the latest GitHub Release.mcpb file and configure:
https://app.codealive.ai; for self-hosted, use your deployment origin (e.g. https://codealive.yourcompany.com)Option 2: Docker (STDIO)
Edit your config file:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonAdd this configuration:
{
"mcpServers": {
"codealive": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
Option 1: Remote HTTP (Recommended)
{
"mcpServers": {
"codealive": {
"url": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Option 2: Docker (STDIO)
{
"mcpServers": {
"codealive": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
Add CodeAlive as a remote MCP server in your opencode.json.
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"codealive": {
"type": "remote",
"url": "https://mcp.codealive.ai/api",
"enabled": true,
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Qwen Code supports MCP via mcpServers in its settings.json and multiple transports (stdio/SSE/streamable-http). Use streamable-http when available; otherwise use Docker (stdio).
~/.qwen/settings.json (Streamable HTTP)
{
"mcpServers": {
"codealive": {
"type": "streamable-http",
"url": "https://mcp.codealive.ai/api",
"requestOptions": {
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
}
Fallback: Docker (stdio)
{
"mcpServers": {
"codealive": {
"type": "stdio",
"command": "docker",
"args": ["run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"]
}
}
}
Roo Code reads a JSON settings file similar to Cline.
Global config: mcp_settings.json (Roo) or cline_mcp_settings.json (Cline-style)
Option A โ Remote HTTP
{
"mcpServers": {
"codealive": {
"type": "streamable-http",
"url": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Option B โ Docker (STDIO)
{
"mcpServers": {
"codealive": {
"type": "stdio",
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
Tip: If your Roo build doesn't honor HTTP headers, use the Docker/STDIO option.
UI path: Settings โ MCP Servers โ Add โ choose Streamable HTTP
Streamable HTTP configuration:
codealivehttps://mcp.codealive.ai/apiAuthorization: Bearer YOUR_API_KEY_HEREDocker (STDIO) alternative:
Add a STDIO extension with:
dockerrun --rm -i -e CODEALIVE_API_KEY=YOUR_API_KEY_HERE ghcr.io/codealive-ai/codealive-mcp:mainUI path: Manage โ Integrations โ Model Context Protocol (MCP) โ Add Server
HTTP
{
"mcpServers": {
"codealive": {
"type": "streamable-http",
"url": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
STDIO (Docker)
{
"mcpServers": {
"codealive": {
"type": "stdio",
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
File: ~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"codealive": {
"type": "streamable-http",
"serverUrl": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Note: Kiro does not yet support remote MCP servers natively. Use the
mcp-remoteworkaround to connect to remote HTTP servers.
Prerequisites:
npm install -g mcp-remote
UI path: Settings โ MCP โ Add Server
Global file: ~/.kiro/settings/mcp.json
Workspace file: .kiro/settings/mcp.json
Remote HTTP (via mcp-remote workaround)
{
"mcpServers": {
"codealive": {
"type": "stdio",
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.codealive.ai/api",
"--header",
"Authorization: Bearer ${CODEALIVE_API_KEY}"
],
"env": {
"CODEALIVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
Docker (STDIO)
{
"mcpServers": {
"codealive": {
"type": "stdio",
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
UI path: User icon โ Qoder Settings โ MCP โ My Servers โ + Add (Agent mode)
SSE (remote HTTP)
{
"mcpServers": {
"codealive": {
"type": "sse",
"url": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
STDIO (Docker)
{
"mcpServers": {
"codealive": {
"type": "stdio",
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
Q Developer CLI
Config file: ~/.aws/amazonq/mcp.json or workspace .amazonq/mcp.json
HTTP server
{
"mcpServers": {
"codealive": {
"type": "http",
"url": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
STDIO (Docker)
{
"mcpServers": {
"codealive": {
"type": "stdio",
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
Q Developer IDE (VS Code / JetBrains)
Global: ~/.aws/amazonq/agents/default.json
Local (workspace): .aws/amazonq/agents/default.json
Minimal entry (HTTP):
{
"mcpServers": {
"codealive": {
"type": "http",
"url": "https://mcp.codealive.ai/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
},
"timeout": 310000
}
}
}
Use the IDE UI: Q panel โ Chat โ tools icon โ Add MCP Server โ choose http or stdio.
Note: JetBrains AI Assistant requires the
mcp-remoteworkaround for connecting to remote HTTP MCP servers.
Prerequisites:
npm install -g mcp-remote
Config file: Settings/Preferences โ AI Assistant โ Model Context Protocol โ Configure
Add this configuration:
{
"mcpServers": {
"codealive": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.codealive.ai/api",
"--header",
"Authorization: Bearer ${CODEALIVE_API_KEY}"
],
"env": {
"CODEALIVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
For self-hosted deployments, replace the URL:
{
"mcpServers": {
"codealive": {
"command": "npx",
"args": [
"mcp-remote",
"http://your-server:8000/api",
"--header",
"Authorization: Bearer ${CODEALIVE_API_KEY}"
],
"env": {
"CODEALIVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
See JetBrains MCP Documentation for more details.
Using AI Agent Node with MCP Tools
Add an AI Agent node to your workflow
Configure the agent with MCP tools:
Server URL: https://mcp.codealive.ai/api
Authorization Header: Bearer YOUR_API_KEY_HERE
The server automatically handles n8n's extra parameters (sessionId, action, chatInput, toolCallId)
Use the available tools:
get_data_sources - List available repositoriessemantic_search - Search code semanticallygrep_search - Search by exact text or regexget_artifact_relationships - Expand relationships for one artifactchat - Slower synthesized codebase Q&A, usually after searchcodebase_search - Legacy semantic search aliascodebase_consultant - Deprecated alias for chatExample Workflow:
Trigger โ AI Agent (with CodeAlive MCP tools) โ Process Response
Note: n8n middleware is built-in, so no special configuration is needed. The server will automatically strip n8n's extra parameters before processing tool calls.
For developers who want to customize or contribute to the MCP server.
# 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 .
Once installed locally, configure your AI client to use the local server:
claude mcp add codealive-local /path/to/codealive-mcp/.venv/bin/python /path/to/codealive-mcp/src/codealive_mcp_server.py --env CODEALIVE_API_KEY=YOUR_API_KEY_HERE
Replace the Docker command and args with:
{
"command": "/path/to/codealive-mcp/.venv/bin/python",
"args": ["/path/to/codealive-mcp/src/codealive_mcp_server.py"],
"env": {
"CODEALIVE_API_KEY": "YOUR_API_KEY_HERE"
}
}
# 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/health
After making changes, quickly verify everything works:
# 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 test
The smoke test verifies:
Auto-install for Claude Desktop via Smithery:
npx -y @smithery/cli install @CodeAlive-AI/codealive-mcp --client claude
Repo: https://github.com/akolotov/gemini-cli-codealive-extension
Gemini CLI extension that wires CodeAlive into your terminal with prebuilt slash commands and MCP config. It includes:
GEMINI.md guidance so Gemini knows how to use CodeAlive tools effectively/codealive:chat, /codealive:find, /codealive:searchInstall
gemini extensions install https://github.com/akolotov/gemini-cli-codealive-extension
Configure
# Option 1: .env next to where you run `gemini`
CODEALIVE_API_KEY="your_codealive_api_key_here"
# Option 2: environment variable
export CODEALIVE_API_KEY="your_codealive_api_key_here"
gemini
Deploy the MCP server as an HTTP service for team-wide access or integration with self-hosted CodeAlive instances.
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.
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/health
Configuration Options:
For CodeAlive Cloud (default):
CODEALIVE_BASE_URL environment variable (uses default https://app.codealive.ai)Authorization: Bearer YOUR_KEY headerFor Self-Hosted CodeAlive:
CODEALIVE_BASE_URL to your CodeAlive instance URL (e.g., https://codealive.yourcompany.com)Authorization: Bearer YOUR_KEY headerSee docker-compose.example.yml for the complete configuration template.
Once deployed, configure your AI clients to use your HTTP endpoint:
Claude Code:
claude mcp add --transport http codealive http://your-server:8000/api --header "Authorization: Bearer YOUR_API_KEY_HERE"
VS Code:
code --add-mcp "{\"name\":\"codealive\",\"type\":\"http\",\"url\":\"http://your-server:8000/api\",\"headers\":{\"Authorization\":\"Bearer YOUR_API_KEY_HERE\"}}"
Cursor / Other Clients:
{
"mcpServers": {
"codealive": {
"url": "http://your-server:8000/api",
"headers": {
"Authorization": "Bearer YOUR_API_KEY_HERE"
}
}
}
}
Replace your-server:8000 with your actual deployment URL and port.
Claude Code on Windows runs inside WSL (Windows Subsystem for Linux). Claude Desktop runs natively on Windows. This creates specific challenges when configuring MCP servers โ especially around binary paths, environment variables, and networking.
The simplest solution for both Claude Code and Claude Desktop on Windows is Remote HTTP โ it avoids all subprocess spawning and path issues entirely.
When Claude Code runs inside WSL, it operates as a normal Linux environment. Use the same commands as on Linux/macOS:
Remote HTTP (Recommended โ avoids all WSL issues):
claude mcp add --transport http codealive https://mcp.codealive.ai/api --header "Authorization: Bearer YOUR_API_KEY_HERE"
Docker STDIO (if Docker Desktop WSL integration is enabled):
claude mcp add codealive-docker /usr/bin/docker run --rm -i -e CODEALIVE_API_KEY=YOUR_API_KEY_HERE ghcr.io/codealive-ai/codealive-mcp:main
Note: If
dockeris not found, ensure Docker Desktop has WSL integration enabled for your distro, or use the full path/usr/bin/docker.
Claude Desktop on Windows cannot connect to MCP servers running inside WSL directly. Use one of these approaches:
Option 1: Docker Desktop (Recommended)
If Docker Desktop is installed on Windows, docker.exe is in the Windows PATH:
{
"mcpServers": {
"codealive": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
Option 2: wsl.exe Proxy
If Docker is only available inside WSL, use wsl.exe as a bridge:
{
"mcpServers": {
"codealive": {
"command": "wsl.exe",
"args": [
"--", "docker", "run", "--rm", "-i",
"-e", "CODEALIVE_API_KEY=YOUR_API_KEY_HERE",
"ghcr.io/codealive-ai/codealive-mcp:main"
]
}
}
}
If you run the MCP HTTP server inside WSL2 and connect from Windows-side clients:
WSL2 NAT networking issue: By default, localhost inside WSL2 is not reachable from Windows. Two workarounds:
Enable mirrored networking (Windows 11 22H2+) โ add to %USERPROFILE%\.wslconfig:
[wsl2]
networkingMode=mirrored
Then restart WSL: wsl --shutdown. After this, localhost is shared between Windows and WSL2.
Use WSL2 VM IP โ run hostname -I inside WSL to get the IP, then connect to http://<WSL_IP>:8000/api instead of http://localhost:8000/api.
| Problem | Cause | Fix |
|---|---|---|
docker: command not found | Docker not in WSL PATH | Enable Docker Desktop WSL integration for your distro, or use full path /usr/bin/docker |
ENOENT / spawn error for npx or python | Binary not in non-interactive shell PATH | Use absolute path (e.g., /home/user/.nvm/versions/node/v20/bin/npx) |
| Environment variables missing | WSL non-login shell doesn't source .bashrc | Add vars explicitly in MCP config env block |
Connection refused to self-hosted server | WSL2 NAT isolates localhost | Enable mirrored networking or use WSL2 VM IP |
| Claude Desktop can't reach WSL MCP server | Claude Desktop doesn't support WSL subprocess spawning | Use Remote HTTP, Docker Desktop, or wsl.exe proxy |
Test the hosted service:
curl https://mcp.codealive.ai/health
Check your API key:
curl -H "Authorization: Bearer YOUR_API_KEY" https://app.codealive.ai/api/v1/data_sources
Enable debug logging: Add --debug to local server args
docker: command not found in WSL โ Enable Docker Desktop WSL integration for your distro (Settings โ Resources โ WSL integration), or use the full path /usr/bin/dockerENOENT or spawn error for npx/python โ Non-interactive WSL shells don't inherit nvm/pyenv paths. Use absolute paths in MCP configsConnection refused to self-hosted server in WSL2 โ WSL2 uses NAT networking; localhost differs between Windows and WSL2. Enable mirrored networking in .wslconfig or use the WSL2 VM IP (hostname -I)https://mcp.codealive.ai/api), Docker Desktop, or the wsl.exe proxy pattern (see Windows & WSL section)For maintainers: see DEPLOYMENT.md for instructions on publishing new versions to the MCP Registry.
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.
MIT License - see LICENSE file for details.
Ready to supercharge your AI assistant with deep code understanding?
Get started now โ
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
by Microsoft ยท Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace ยท Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm โ conversationally
by mcp-marketplace ยท Finance
Free stock data and market news for any MCP-compatible AI assistant.