# Tarotoo Tarot (npm · tarotoo-mcp-server)

All 78 tarot card meanings (Rider-Waite-Smith): lookup, search, yes/no answers, and random draws.

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

## Components

- npm · `tarotoo-mcp-server`: 70/100 (this document), [markdown](https://verifymcp.io/servers/tarotoo-com-tarotoo-mcp-server/tarotoo-mcp-server.md), [page](https://verifymcp.io/servers/tarotoo-com-tarotoo-mcp-server/tarotoo-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `tarotoo-mcp-server`
- Version: `2.0.0`
- 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**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), 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 (94 of 98), so this covers what we could see, not the whole tree.
- **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 10 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 83/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 393 tokens (~78/item across 5 items; 5 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**: 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**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add tarotoo-com-tarotoo-mcp-server -- npx -y tarotoo-mcp-server
```

### Codex

```bash
codex mcp add tarotoo-com-tarotoo-mcp-server -- npx -y tarotoo-mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add tarotoo-com-tarotoo-mcp-server --command npx --arg -y --arg tarotoo-mcp-server
```

### Hermes

```yaml
mcp_servers:
  tarotoo-com-tarotoo-mcp-server:
    command: "npx"
    args: ["-y", "tarotoo-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "tarotoo-com-tarotoo-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "tarotoo-mcp-server"
      ]
    }
  }
}
```

## 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-02 (score 70, +44)

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

### 2026-08-01 (score 26, +21)

- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] MCP protocol: unverified → pass

### 2026-07-31 (score 5, −23)

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

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

- [security regression] Malware scan: pass → unverified

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

First indexed and scored.

## MCP tools (5)

### `get_card_meaning` (~103 tokens)

Get card meaning

Get the full meaning of a single tarot card from the Tarotoo dataset (Rider-Waite-Smith tradition): upright and reversed meanings and keywords, upright and reversed love, career, mood, and spiritual contexts, element, astrology, and upright and reversed yes/no values. Call this when you need the meaning of a specific card by name.

Input parameters:

- `name` (string, required): Card name, e.g. "The Fool" or "Ace of Cups"

### `list_cards` (~74 tokens)

List cards

List tarot card names in the dataset, optionally filtered by arcana (major/minor) or suit (wands/cups/swords/pentacles). Call this to discover valid card names.

Input parameters:

- `arcana` (string): Filter by arcana
- `suit` (string): Filter by suit (minor arcana only)

### `search_cards` (~90 tokens)

Search cards

Search all 78 tarot cards by theme, keyword, or topic (e.g. "new beginnings", "heartbreak", "career success"). Searches names, keywords, and meaning texts. Returns matching cards with their keywords. Call this when you have a theme rather than a card name.

Input parameters:

- `limit` (integer): Max results (default 10)
- `query` (string, required): Search term or theme

### `yes_no_answer` (~48 tokens)

Yes/no answer

Get the yes/no/maybe value of a tarot card for yes-or-no readings, with the upright meaning as justification. Covers all 78 cards.

Input parameters:

- `name` (string, required): Card name

### `draw_cards` (~78 tokens)

Draw cards

Randomly draw one or more distinct tarot cards from the full 78-card deck, optionally with reversals, returning each card's full meaning. Use for generating a reading spread.

Input parameters:

- `allow_reversed` (boolean): Whether cards may be drawn reversed (default false)
- `count` (integer): Number of cards to draw (default 1)

## Diagnostics

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

## Score history

- 2026-08-03: 70
- 2026-08-02: 70
- 2026-08-01: 26
- 2026-07-31: 5
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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