Octri

MCP Server

Overview

The Octri MCP server connects your API to Claude, Cursor, and any MCP-compatible assistant. The agent reads your documentation as live context instead of guessing from memory, and it can call your API directly.

Why it matters

An agent asked to integrate your API without MCP does one of two things: recites an API it saw during training, or guesses from the name. Both produce code that looks right and doesn't run.

With MCP, the agent reads your actual endpoints, your actual parameters, and your actual guides, at the version you published.

What ships

The server is @octri/mcp and runs through npx, so there's nothing to install ahead of time. You need your project id.

  1. Install

    Add it to your MCP client's config. See Install.

  2. Docs tools work immediately

    Search, read, and navigate. Published content only.

  3. Add credentials for operation tools

    Only if you want the agent to call your API. See Configuration.

Two kinds of tool

Documentation toolsOperation tools
What they doRead your docsCall your API
Need credentialsNoYes
Side effectsNoneReal
Derived fromPublished pagesYour SDK Studio config
Operation tools make real API calls

They are not previews. A tool call hits your live API with the credentials you configure, and a write endpoint will write. Point them at staging while you're evaluating. See Operation tools.