# Octri API Docs (npm · @octri/mcp)

Search an Octri project's API docs and call its endpoints as tools, shaped by its SDK Studio config.

- Trust score: 71/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-26

## Components

- npm · `@octri/mcp`: 71/100 (this document), [markdown](https://verifymcp.io/servers/dev-octri-mcp/octri-mcp.md), [page](https://verifymcp.io/servers/dev-octri-mcp/octri-mcp)

## Channel facts

- Registry: `npm`
- Package: `@octri/mcp`
- Version: `1.1.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-09-26.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 31 of 95 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 0 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 80/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 567 tokens (~81/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 7 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 7 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 1 category.** A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the Octri API Docs MCP server?

Octri API Docs runs locally as an npm package, launched with npx -y @octri/mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add dev-octri-mcp -- npx -y @octri/mcp
```

### Cursor

```json
{
  "mcpServers": {
    "dev-octri-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@octri/mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "dev-octri-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@octri/mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add dev-octri-mcp -- npx -y @octri/mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dev-octri-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@octri/mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add dev-octri-mcp --command npx --arg -y --arg @octri/mcp
```

### Hermes

```yaml
mcp_servers:
  dev-octri-mcp:
    command: "npx"
    args: ["-y", "@octri/mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "dev-octri-mcp": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "@octri/mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add dev-octri-mcp -t stdio -c npx -a -y @octri/mcp
```

### Other

```json
{
  "mcpServers": {
    "dev-octri-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@octri/mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-09-25 (score 71)

First indexed and scored.

## MCP tools (7)

### `search_docs` (~78 tokens)

Search the API documentation for an endpoint or concept

Input parameters:

- `limit` (number): Maximum number of results to return (default 5)
- `projectId` (string): Project to read. Optional — defaults to the project this server was started with. Only pass it to target a different project.
- `query` (string, required): Natural language search query

### `get_endpoint` (~59 tokens)

Get full documentation for a specific API endpoint

Input parameters:

- `projectId` (string): Project to read. Optional — defaults to the project this server was started with. Only pass it to target a different project.
- `slug` (string, required): The endpoint slug

### `list_endpoints` (~59 tokens)

List all available API endpoints

Input parameters:

- `projectId` (string): Project to read. Optional — defaults to the project this server was started with. Only pass it to target a different project.
- `section` (string): Filter by section/tag name

### `get_changelog` (~66 tokens)

Get recent API changes and breaking changes

Input parameters:

- `breakingOnly` (boolean): Only return entries with breaking changes (default false)
- `projectId` (string): Project to read. Optional — defaults to the project this server was started with. Only pass it to target a different project.

### `list_sdks` (~59 tokens)

List the available SDK client libraries for this API (languages, versions, and download links)

Input parameters:

- `projectId` (string): Project to read. Optional — defaults to the project this server was started with. Only pass it to target a different project.

### `get_guide` (~93 tokens)

Get the full content of a written guide (tutorial / conceptual doc) by its slug

Input parameters:

- `groupSlug` (string): The guide's section slug, if it belongs to one
- `projectId` (string): Project to read. Optional — defaults to the project this server was started with. Only pass it to target a different project.
- `slug` (string, required): The guide slug (from list_endpoints)

### `get_sdk_methods` (~153 tokens)

Show how to call this API through its generated SDKs. Ready-to-use code snippets per endpoint in every supported language. Use `slug` (from list_endpoints) to focus on one endpoint, and `language` (e.g. typescript, python, go) to focus on one language.

Input parameters:

- `language` (string): Focus on one SDK language (e.g. typescript, python, go). Omit for all supported languages.
- `projectId` (string): Project to read. Optional — defaults to the project this server was started with. Only pass it to target a different project.
- `slug` (string): Focus on a single endpoint by its slug. Omit to return all endpoints.

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/dev-octri-mcp/octri-mcp#diagnostics

## Score history

- 2026-09-26: 71
- 2026-09-25: 71

## Common questions

### What is the Octri API Docs MCP server?

Octri API Docs is an MCP server listed in the public MCP registry as dev.octri/mcp. Search an Octri project's API docs and call its endpoints as tools, shaped by its SDK Studio config. This page covers its npm package (@octri/mcp).

### Is the Octri API Docs MCP server safe to use?

Octri API Docs scores 71 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 26 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Octri API Docs MCP server expose?

Octri API Docs exposes 7 tools: search_docs, get_endpoint, list_endpoints, get_changelog, list_sdks, and 2 more. Their descriptions and schemas cost roughly 567 tokens of context every time the server is loaded.

### Is the Octri API Docs MCP server still maintained?

Octri API Docs is still listed as active in the MCP registry. We last reached this channel on 26 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the Octri API Docs MCP server under?

Octri API Docs declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/@octri/mcp
- Socket report: https://socket.dev/npm/package/@octri/mcp
- Repository: https://github.com/octridev/octri-mcp
- Website: https://octri.dev/
- Changelog RSS feed: https://verifymcp.io/servers/dev-octri-mcp/octri-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/dev-octri-mcp/octri-mcp.json
- HTML version of this page: https://verifymcp.io/servers/dev-octri-mcp/octri-mcp
