corrdexlivemcp
v0.1.3
Published
Small stdio MCP server that exposes Corrdex trimmed context to coding agents.
Maintainers
Readme
Corrdex Live MCP
Small stdio MCP server that lets coding agents fetch the same trimmed Corrdex context used by the hosted AI pipeline.
What it exposes
corrdex_projectscorrdex_branchescorrdex_context
These tools call the Corrdex API:
GET /v1/projectsGET /v1/projects/:projectId/branchesPOST /v1/ai/chat/context
The context tool returns the prompt-trimmed context payload, not the raw unbounded context envelope.
Environment
Copy .env.example to .env and set:
CORRDEX_API_KEY
Optional:
CORRDEX_API_BASE_URLDefaults tohttps://api.corrdex.appwhen omitted.CORRDEX_DEFAULT_ORGANIZATION_IDCORRDEX_DEFAULT_PROJECT_IDCORRDEX_DEFAULT_BRANCH_IDCORRDEX_REQUEST_TIMEOUT_MS
Scripts
npm run devnpm run buildnpm run startnpm run check
Typical Agent Flow
- Call
corrdex_projectsto find the target project id. If your Corrdex API requires organization scoping, either passorganizationIdto the tool or configureCORRDEX_DEFAULT_ORGANIZATION_ID. - Call
corrdex_branchesto find the target branch ids when needed. - Call
corrdex_contextwith a plain-English question and optional branch selection.
