Corvin exposes an MCP server at /v2/mcp. Connect Claude Code, Claude Desktop, Cursor, or VS Code Copilot. Every tool call runs against your live services in real time.
Run corvin login to sign in via the browser. Your key is saved to ~/.corvin/config. Or create one at the dashboard.
Wrap each service with corvin <cmd>. Logs stream to the local cluster on :4466. The MCP server connects to this.
Pick the config for your client below. Paste your API key from ~/.corvin/config. Point the URL at your Corvin server.
Open your client and start asking. Tools execute against your live services in real time — no copy-pasting logs.
Get your API key from ~/.corvin/config after corvin login, or from the dashboard.
{
"mcpServers": {
"corvin": {
"type": "http",
"url": "https://api.usecorvin.space/v2/mcp",
"headers": {
"Authorization": "Bearer <your-api-key>"
}
}
}
}$ claude mcp add --transport http \
--header "Authorization: Bearer <key>" \
corvin https://api.usecorvin.space/v2/mcpOr add via CLI command above. The server can be local or remote (use HTTPS for production).
Tools are scoped to your session — only services connected under your API key are accessible.
List all services connected to your Corvin session.
—Get the last N lines from a service's in-memory logs.
serviceId, nSearch logs for a pattern with before/after context.
serviceId, pattern, before, afterMost recent N lines containing ERROR, WARN, FATAL, EXCEPTION.
serviceId, nPaginated log reading (50 lines per page).
serviceId, pageNumberRipgrep through source code. Returns file path and matching line.
serviceId, searchTermRead lines around a specific line number in any source file.
serviceId, filePath, lineNumber, before, afterGenerate a concise project name from a plain-language description.
descriptionMCP tools only reach services connected under your API key. Requesting another user's serviceId returns an access-denied error.
The Corvin CLI API key authorises both WebSocket connections and MCP requests. Revoke it in the dashboard to immediately block both.
The MCP server runs on your machine at api.usecorvin.space. Nothing is forwarded to a third party. Use HTTPS + a reverse proxy for remote access.
Install Corvin, run your services wrapped, add the MCP config, and your AI client can tail logs and read your code.