GPS for Your Codebase.
Not Pins on a Map.
RAG gives your AI 10 random files and says "good luck." OCXP gives it a map with turn-by-turn directions. Less chat. More action.
"What happens if I change this function?"
RAG finds the file. OCXP finds the file, the database it writes to, the queue it triggers, and the downstream service it would break.
RAG: File Search
async function createUser(data) { // ... function body }
No infrastructure context.
No downstream visibility.
OCXP: Full-Stack Awareness
"RAG helps you write the function. OCXP prevents you from taking down production."
2,261 Resource Types
Parses Terraform, CloudFormation, and CDK. Sees every cloud resource.
Service Mesh Tracing
Follows API calls, queues, and event buses across microservices.
Blast Radius Detection
Identifies downstream consumers before you ship.
Built for platform teams running microservices at scale.
Sniper rifle, not shotgun.
RAG retrieves 12 random chunks hoping one is right. OCXP navigates directly to the exact code in 2-3 hops.
RAG: Spray and Pray
OCXP: Precision Navigation
Ask for a city name. Get a city name. Not the entire atlas.
Progressive zoom delivers exactly the right detail level. 10 tokens at L0. Not 8,563 scanning every file.
{ "modules": ["auth", "users", "payments", "api"], "token_count": 10}Cut your AI agent's bill in half.
Precision is not just better results -- it is cheaper results. 53% fewer tokens for the same understanding.
Traditional retrieval-augmented generation
tokens consumed
Blind file searching, redundant context, token bloat. Agents waste cycles re-reading irrelevant code.
Structured context delivery
tokens consumed
Structured context, precise delivery, zero waste. Agents get exactly the context they need at the right zoom level.
Token Usage Comparison
Average reduction in token consumption across benchmark tasks
More efficient context delivery per code entity compared to RAG
From install to full codebase understanding in seconds, not minutes
30 seconds to context. Zero Docker containers.
Competitors need 5+ services to get started. OCXP is a single binary. Install, index, ship.
Install in One Line
$ curl -fsSL https://get.ocxp.dev | shA single binary. No Docker, no databases, no configuration files. Point it at your codebase and go.
45MB. Zero Dependencies.Connect Your Agent
$ ocxp-engine serve --mcpOCXP Engine exposes an MCP-compatible server. Claude Code, Cursor, Windsurf -- any MCP client connects instantly.
MCP CompatibleCut Your API Bill
agent.query("add auth to /api/users")53% fewer tokens means your AI budget goes twice as far. Precision context, not bulk retrieval.
Free for individualsWorking with a team? Deploy the shared workspace on AWS for team-wide intelligence.
Built by developers, for developers.
Clean APIs, zero boilerplate, and everything you need to integrate in minutes.
// Query at different zoom levels
const overview = await ocxp.query("auth module", { zoom: "L0" });
// Returns: { modules: ["auth", "oauth", "session"], tokens: 10 }
const details = await ocxp.query("auth module", { zoom: "L2" });
// Returns: function signatures, call graphs, complexity metrics
// tokens: 340 (vs 8,563 with RAG)Get exactly the detail level your agent needs. No more, no less.
Stop guessing.
Start knowing.
GPS for your codebase. Precision context for AI agents. Free for individuals. Shared workspaces for teams.
Open source. Apache 2.0 licensed. Built with Rust.