Skip to main content
Korve’s MCP server lives at https://mcp.korve.dev/mcp. For Claude Code:
Any MCP client that speaks streamable HTTP works the same way: point it at the URL and send your org-scoped API key as a bearer token. Mint keys in the dashboard — see the quickstart.

Two tools, not forty

Korve uses Code Mode: instead of one MCP tool per endpoint, there are exactly two tools that compose into everything the platform can do.

search — discover operations

Free discovery over the public API spec. No API key required. Each match includes the operation id, method, path, description, auth requirement, minimum org role, risk classification, parameters, and request body schema — everything needed to call it correctly on the first try.

execute — run code against the API

Runs JavaScript with a typed korve client in scope: one async method per operation id from search. Requires your API key.
Pass path and query parameters as named fields and the request body as body. Top-level await is allowed; the final expression (or an explicit return) becomes the result, and console.log output is captured. Responses come back as { result, logs, requests }requests is the [{ op, status }] audit trail of every API call the code made.

A typical search → execute flow

  1. search {"query": "logs"} → finds logs.query and its parameters.
  2. execute:
  1. Spot a failed deploy? search {"query": "diagnose"}execute with await korve.deploys.diagnose({ orgId, projectId, deployId }).

Scoping and safety

  • Keys are org-scoped with a role ceiling. A key authorizes only its own organization, as member or admin — never owner. Key management, billing mutations, and membership are session-only, so a leaked key can’t escalate.
  • Execution is sandboxed. Code runs in an isolated sandbox whose only egress is the Korve API with your key. No other network access exists, and execution times out after 10 seconds.
  • Everything is audited. Every result includes the requests audit trail; risky operations are flagged as dangerous or destructive in search results so harnesses can gate approval.
  • search and tools/list work without a key, so agents can explore the surface before credentials exist.

Next

  • Agent onboarding — the golden path from zero to deployed.
  • Skills — pre-built knowledge packs for coding agents.