# io.usefulapi/gitbook (remote · gitbook.usefulapi.io)

Read spaces, collections, pages and content; search docs and manage GitBook organization spaces.

- Trust score: 69/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `gitbook.usefulapi.io`: 69/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-gitbook/gitbook.md), [page](https://verifymcp.io/servers/io-usefulapi-gitbook/gitbook)

## Channel facts

- Endpoint: `https://gitbook.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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-08-03.

- **Endpoint Security**: 78/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 961 tokens (~68/item across 14 items; 14 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 3/100
  - Stability observed for 1 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **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.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-gitbook https://gitbook.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-gitbook]
url = "https://gitbook.usefulapi.io/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "io-usefulapi-gitbook": {
      "type": "remote",
      "url": "https://gitbook.usefulapi.io/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add io-usefulapi-gitbook --url https://gitbook.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-gitbook:
    url: "https://gitbook.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-gitbook": {
      "type": "http",
      "url": "https://gitbook.usefulapi.io/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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-08-03 (score 69, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-02 (score 68, +50)

- [security improvement] Authorization: unverified → pass
- [security improvement] Transport: fail → pass
- [security] First check of Authorization: partial
- [functional regression] MCP protocol: unverified → fail
- [functional improvement] Tool coverage: unverified → 100
- [functional] First check of Schema quality: fail
- [functional] First check of Schema quality: pass
- [functional] First check of Schema quality: good
- [functional] First check of Tool coverage: 100

### 2026-08-01 (score 18)

First indexed and scored.

## MCP tools (14)

### `gitbook_get_current_user` (~29 tokens)

Get current user

Get the profile of the authenticated GitBook user. GitBook REST: GET /user.

### `gitbook_list_organizations` (~51 tokens)

List organizations

List the organizations the authenticated user belongs to. GitBook REST: GET /orgs.

Input parameters:

- `limit` (integer): Results per page.
- `page` (integer): 1-based page number.

### `gitbook_list_spaces` (~64 tokens)

List spaces

List all spaces in an organization. GitBook REST: GET /orgs/{organizationId}/spaces.

Input parameters:

- `limit` (integer): Results per page.
- `organizationId` (string, required): The organization id.
- `page` (integer): 1-based page number.

### `gitbook_get_space` (~42 tokens)

Get space

Get full details of a space by its ID. GitBook REST: GET /spaces/{spaceId}.

Input parameters:

- `spaceId` (string, required): The space id.

### `gitbook_list_pages` (~73 tokens)

List pages

List all pages in a space with their hierarchy and metadata. GitBook REST: GET /spaces/{spaceId}/content/pages.

Input parameters:

- `computed` (boolean): Include computed properties in the response.
- `metadata` (boolean): Include page metadata in the response.
- `spaceId` (string, required): The space id.

### `gitbook_get_page` (~84 tokens)

Get page

Get a single page's content from a space by its page ID. GitBook REST: GET /spaces/{spaceId}/content/page/{pageId}.

Input parameters:

- `format` (string): Response format — 'document' (structured, default) or 'markdown'.
- `pageId` (string, required): The page id.
- `spaceId` (string, required): The space id.

### `gitbook_search_space` (~80 tokens)

Search space

Full-text search across all pages in a space. GitBook REST: GET /spaces/{spaceId}/search.

Input parameters:

- `limit` (integer): Results per page.
- `page` (integer): 1-based page number.
- `query` (string, required): The full-text search query (required).
- `spaceId` (string, required): The space id.

### `gitbook_search_organization` (~79 tokens)

Search organization

Search content across an entire organization. GitBook REST: GET /orgs/{organizationId}/search.

Input parameters:

- `limit` (integer): Results per page.
- `organizationId` (string, required): The organization id.
- `page` (integer): 1-based page number.
- `query` (string, required): The full-text search query (required).

### `gitbook_list_collections` (~81 tokens)

List collections

List all collections in an organization. GitBook REST: GET /orgs/{organizationId}/collections.

Input parameters:

- `limit` (integer): Results per page.
- `nested` (boolean): Include nested (sub-)collections in the response.
- `organizationId` (string, required): The organization id.
- `page` (integer): 1-based page number.

### `gitbook_get_collection` (~39 tokens)

Get collection

Get a collection by its ID. GitBook REST: GET /collections/{collectionId}.

Input parameters:

- `collectionId` (string, required): The collection id.

### `gitbook_list_change_requests` (~90 tokens)

List change requests

List change requests for a space. GitBook REST: GET /spaces/{spaceId}/change-requests.

Input parameters:

- `limit` (integer): Results per page.
- `page` (integer): 1-based page number.
- `spaceId` (string, required): The space id.
- `status` (string): Filter by change-request status, e.g. 'open', 'merged', 'draft'.

### `gitbook_list_comments` (~76 tokens)

List comments

List top-level comments posted on a space. GitBook REST: GET /spaces/{spaceId}/comments.

Input parameters:

- `limit` (integer): Results per page.
- `page` (integer): 1-based page number.
- `spaceId` (string, required): The space id.
- `status` (string): Filter by comment status.

### `gitbook_create_change_request` (~74 tokens)

Create change request

Create a new draft change request (branch) in a space. Safe: creates a draft; publishes nothing. GitBook REST: POST /spaces/{spaceId}/change-requests.

Input parameters:

- `spaceId` (string, required): The space id.
- `subject` (string): A title/subject for the change request.

### `gitbook_update_change_request` (~99 tokens)

Update change request

Update a change request's subject or status. Edits draft metadata only. GitBook REST: PATCH /spaces/{spaceId}/change-requests/{changeRequestId}.

Input parameters:

- `changeRequestId` (string, required): The change request id.
- `spaceId` (string, required): The space id.
- `status` (string): A new status for the change request.
- `subject` (string): A new title/subject for the change request.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/io-usefulapi-gitbook/gitbook#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 68
- 2026-08-01: 18

## Links

- Remote endpoint: https://gitbook.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-gitbook/gitbook/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-gitbook/gitbook/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-gitbook/gitbook
