# ai.imboard/dossier (npm · @ai-dossier/mcp-server)

MCP server for dossier automation standard - enables LLMs to discover, verify, and execute dossiers

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

## Components

- npm · `@ai-dossier/mcp-server`: 78/100 (this document), [markdown](https://verifymcp.io/servers/ai-imboard-dossier/ai-dossier-mcp-server.md), [page](https://verifymcp.io/servers/ai-imboard-dossier/ai-dossier-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@ai-dossier/mcp-server`
- Version: `1.0.4`
- 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 (130 of 134), 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 (130 of 134), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 97/100
  - Source repository is publicly reachable at the declared URL.
  - Cryptographically verified build provenance (signed, bound to imboard-ai/ai-dossier).
  - Clear OSI-approved license (AGPL-3.0-only).
  - Actively maintained (last published 7 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 706 tokens (~50/item across 14 items; 10 tools + 4 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.
- **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

### Claude

```bash
claude mcp add ai-imboard-dossier -- npx -y @ai-dossier/mcp-server
```

### Codex

```bash
codex mcp add ai-imboard-dossier -- npx -y @ai-dossier/mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add ai-imboard-dossier --command npx --arg -y --arg @ai-dossier/mcp-server
```

### Hermes

```yaml
mcp_servers:
  ai-imboard-dossier:
    command: "npx"
    args: ["-y", "@ai-dossier/mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "ai-imboard-dossier": {
      "command": "npx",
      "args": [
        "-y",
        "@ai-dossier/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 78, +47)

- [security improvement] Install scripts: unverified → pass
- [security improvement] Provenance: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [security] The attested source repository moved: imboard-ai/ai-dossier
- [functional regression] Schema quality: 100 → unverified
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] Maintenance: unverified → pass
- [functional] Licence: AGPL-3.0-only

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

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

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

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

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

First indexed and scored.

## MCP tools (10)

### `verify_dossier` (~48 tokens)

Security verification - Verify integrity (checksum) and authenticity (signature) of a dossier. Returns pass/fail with stage details.

Input parameters:

- `path` (string, required): Path to dossier file (.ds.md)

### `read_dossier` (~44 tokens)

Read and parse a dossier file. Returns metadata and content. Should be called AFTER verify_dossier passes.

Input parameters:

- `path` (string, required): Path to dossier file (.ds.md)

### `list_dossiers` (~58 tokens)

Discover available dossiers in a directory. Scans for *.ds.md files and returns metadata.

Input parameters:

- `path` (string): Directory to search (default: current working directory)
- `recursive` (boolean): Search subdirectories recursively (default: true)

### `search_dossiers` (~55 tokens)

Search the dossier registry for available dossiers by keyword. Returns matching dossiers with metadata.

Input parameters:

- `category` (string): Filter by category (devops, database, development, security, etc.)
- `query` (string, required): Search keywords

### `resolve_graph` (~64 tokens)

Resolve a dossier dependency graph into an execution plan. Reads relationships (preceded_by, followed_by, conflicts_with) and produces a DAG with ordered phases, parallel groups, and conflict detection.

Input parameters:

- `dossier` (string, required): Path to dossier file (.ds.md) or registry name

### `verify_graph` (~84 tokens)

Batch security verification for a dossier dependency graph. Verifies all dossiers in a resolved graph and returns an aggregate security report with per-dossier breakdown and overall recommendation.

Input parameters:

- `dossier` (string): Path to dossier file (.ds.md) or registry name. Resolves and verifies in one shot.
- `graph_id` (string): ID of a previously resolved graph (from resolve_graph)

### `start_journey` (~62 tokens)

Start a journey session from a resolved and verified graph. Creates a session, returns the first step's dossier content with any injected context. Call step_complete after executing each step.

Input parameters:

- `graph_id` (string, required): ID of a previously resolved graph (from resolve_graph)

### `step_complete` (~104 tokens)

Mark the current journey step as complete or failed. Advances to the next step and returns its dossier content with injected context from previous outputs. Returns a summary when the last step completes or a step fails.

Input parameters:

- `journey_id` (string, required): Journey session ID (from start_journey)
- `outputs` (object): Key-value outputs collected during this step (e.g. { cluster_arn: "arn:..." })
- `status` (string, required): Whether this step succeeded or failed

### `get_journey_status` (~48 tokens)

Get the current state of a journey session: completed steps, current step, remaining steps, and collected outputs.

Input parameters:

- `journey_id` (string, required): Journey session ID (from start_journey)

### `cancel_journey` (~51 tokens)

Cancel an active journey session. Returns a summary of what completed before cancellation.

Input parameters:

- `journey_id` (string, required): Journey session ID (from start_journey)
- `reason` (string): Optional reason for cancellation

## Diagnostics

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

## Score history

- 2026-08-03: 78
- 2026-08-02: 78
- 2026-08-01: 31
- 2026-07-31: 5
- 2026-07-30: 53
- 2026-07-28: 53
- 2026-07-27: 53

## Links

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