# Teneo Book Generation (npm · teneo-book-mcp)

Generate complete nonfiction books with Teneo: outline, manuscript, cover, and PDF/EPUB/DOCX files.

- Trust score: 58/100 (low)
- Change this week: +21
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `teneo-book-mcp`: 58/100 (this document), [markdown](https://verifymcp.io/servers/traviseric-teneo-book-mcp/teneo-book-mcp.md), [page](https://verifymcp.io/servers/traviseric-teneo-book-mcp/teneo-book-mcp)

## Channel facts

- Registry: `npm`
- Package: `teneo-book-mcp`
- Version: `1.0.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-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 19/100
  - Repository check failed: the declared repository URL returned HTTP 404.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 66 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 54/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 543 tokens (~77/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 78/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 33% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add traviseric-teneo-book-mcp -- npx -y teneo-book-mcp
```

### Codex

```bash
codex mcp add traviseric-teneo-book-mcp -- npx -y teneo-book-mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add traviseric-teneo-book-mcp --command npx --arg -y --arg teneo-book-mcp
```

### Hermes

```yaml
mcp_servers:
  traviseric-teneo-book-mcp:
    command: "npx"
    args: ["-y", "teneo-book-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "traviseric-teneo-book-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "teneo-book-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-08-03 (score 58, −2)

No change was recorded against any check on this day. Supply Chain Security went from 97 to 87. Other categories moved too: Stability & Change Management rose 4.

### 2026-08-02 (score 60, +60)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Malware scan: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → fair
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional] Licence: MIT

### 2026-08-01 (score 0, −14)

- [functional regression] Tool coverage: 100 → unverified

### 2026-07-31 (score 14, +14)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 0, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-28 (score 18, −19)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 37)

First indexed and scored.

## MCP tools (7)

### `teneo_capabilities` (~45 tokens)

Discover what Teneo can generate and how: auth, pricing (credits), request fields, the workflow, use cases, and the output shape. Call this first if unsure.

### `teneo_generate_book` (~190 tokens)

Generate a COMPLETE, publish-ready non-fiction book (full manuscript + cover + PDF/EPUB/DOCX) from a topic/spec. Asynchronous: returns a jobId immediately (~45 min to finish). Then poll teneo_book_status. Charged in Teneo credits to the funded account. Use for a finished book/manuscript or KDP-ready files — not for a short answer or fiction.

Input parameters:

- `author_name` (string)
- `creative_direction` (string): Tone / style / angle.
- `description` (string, required): What the book covers.
- `idempotency_key` (string): Optional stable retry key so the same request cannot double-charge.
- `number_of_chapters` (integer)
- `output_formats` (array)
- `target_audience` (string, required): Who the book is for.
- `title` (string, required): Book title (or the topic).

### `teneo_book_status` (~65 tokens)

Check a book generation job. When status is "completed", the response includes outputManifest with coverUrl and time-limited download URLs for each format. Poll every ~30-60s.

Input parameters:

- `jobId` (string, required): The jobId returned by teneo_generate_book.

### `teneo_generate_outline` (~71 tokens)

Generate an outline candidate for a nonfiction book without running the full book pipeline.

Input parameters:

- `description` (string): What the book covers.
- `number_of_chapters` (integer)
- `target_audience` (string): Who the book is for.
- `title` (string, required): Book title or topic.

### `teneo_generate_cover` (~67 tokens)

Generate a book cover only. This charges the account for cover generation credits.

Input parameters:

- `author` (string)
- `mood` (string)
- `provider` (string)
- `style` (string)
- `theme` (string)
- `title` (string, required)

### `teneo_evaluate_book` (~55 tokens)

Run a Teneo evaluation on an existing generated book.

Input parameters:

- `evaluationMode` (string)
- `forceRestart` (boolean)
- `fullBookId` (string, required)
- `rewriteVersion` (string)

### `teneo_research_niche` (~50 tokens)

Start a niche research job from a seed topic.

Input parameters:

- `audience` (string)
- `category` (string)
- `count` (integer)
- `topic` (string, required)

## Diagnostics

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

## Score history

- 2026-08-03: 58
- 2026-08-02: 60
- 2026-08-01: 0
- 2026-07-31: 14
- 2026-07-30: 0
- 2026-07-28: 18
- 2026-07-27: 37

## Links

- npm package: https://www.npmjs.com/package/teneo-book-mcp
- Socket report: https://socket.dev/npm/package/teneo-book-mcp
- Website: https://teneo.io/for-agents
- Changelog RSS feed: https://verifymcp.io/servers/traviseric-teneo-book-mcp/teneo-book-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/traviseric-teneo-book-mcp/teneo-book-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/traviseric-teneo-book-mcp/teneo-book-mcp
