One context layer. MCP, REST, or both.
The same indexed codebase your team queries, wired into Cursor, Claude Code, Continue, Cline, or anything that speaks HTTP.
# Add CodeAlive MCP to Claude Code
claude mcp add --transport http codealive \
https://mcp.codealive.ai/api/ \
--header "Authorization: Bearer $CODEALIVE_KEY"
# Or via REST
curl -X POST https://api.codealive.ai/v1/search \
-H "Authorization: Bearer $CODEALIVE_KEY" \
-d '{"query":"How does refund flow work?"}'Connect your agent in one command
Connect any MCP-compatible AI agent to your indexed codebase in one command. No plugins, no glue code.
- Works with Cursor, Claude Code, Continue, and Cline out of the box
- No prompt templates, no glue code, no plugin to maintain
- Reduces hallucinations by grounding answers in real code
- Maintains full codebase awareness across every turn
claude mcp add --transport http codealive https://mcp.codealive.ai/api --header "Authorization: Bearer YOUR_API_KEY"Plain HTTP. Bearer token. JSON.
Search, chat, stream tokens, batch jobs. Same layer your agents hit, exposed as REST.
RESTful endpoints
Predictable JSON over HTTPS. Bearer token auth. Works from any language or runtime.
Search & query
Hybrid semantic + lexical search, plus structured chat queries grounded in your code.
Streaming responses
Server-sent events for low-latency token streaming straight into your UI.
Batch operations
Submit many queries in one call, ideal for offline analysis and bulk pipelines.
curl https://api.codealive.ai/v1/search \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "rate limiting middleware", "data_source_ids": ["..."]}'Docs, references, examples, SDKs
Find what you need at docs.codealive.ai.
Open Source MCP Server
The MCP server is open source. Audit it, fork it, or run it on your own infrastructure.
github.com/CodeAlive-AI/codealive-mcp
Free CodeAlive MCP access for popular open source repositories
We pre-index popular OSS repos so you can read their internals without cloning them first.
- Pre-indexed popular OSS projects ready to query
- Same MCP surface your agents already speak
- Zero setup; just point your agent at the OSS endpoint