# io.github.ionasrobert/tacitus-mcp-server (npm · @dashiro/tacitus-mcp-server)

Long-term memory for AI agents: local-first PKM with provenance and hybrid search.

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

## Components

- npm · `@dashiro/tacitus-mcp-server`: 62/100 (this document), [markdown](https://verifymcp.io/servers/ionasrobert-tacitus-mcp-server/dashiro-tacitus-mcp-server.md), [page](https://verifymcp.io/servers/ionasrobert-tacitus-mcp-server/dashiro-tacitus-mcp-server)

## Channel facts

- Registry: `npm`
- Package: `@dashiro/tacitus-mcp-server`
- Version: `0.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-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (96 of 100), 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 (96 of 100), 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**: 54/100
  - AI-judged instruction clarity (fair).
  - Tool/resource definitions use about 700 tokens (~43/item across 16 items; 16 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**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% 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 ionasrobert-tacitus-mcp-server -- npx -y @dashiro/tacitus-mcp-server
```

### Codex

```bash
codex mcp add ionasrobert-tacitus-mcp-server -- npx -y @dashiro/tacitus-mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add ionasrobert-tacitus-mcp-server --command npx --arg -y --arg @dashiro/tacitus-mcp-server
```

### Hermes

```yaml
mcp_servers:
  ionasrobert-tacitus-mcp-server:
    command: "npx"
    args: ["-y", "@dashiro/tacitus-mcp-server"]
```

### Other

```json
{
  "mcpServers": {
    "ionasrobert-tacitus-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "@dashiro/tacitus-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-03 (score 62, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 61, +28)

- [security regression] Provenance: unverified → fail
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Install scripts: unverified → pass
- [functional regression] Security disclosure: fail → unverified
- [functional regression] Tool coverage: 100 → unverified
- [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] First check of Schema quality: unverified
- [functional] Licence: MIT

### 2026-08-01 (score 33, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-07-31 (score 18, −24)

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

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

First indexed and scored.

## MCP tools (16)

### `remember` (~81 tokens)

Store a typed memory (user|feedback|project|reference) with mandatory provenance. Returns a stable memory_id; idempotent for identical content+source.

Input parameters:

- `content` (string, required)
- `key` (string)
- `source` (object)
- `tags` (array)
- `ttl` (number)
- `type` (string, required)

### `recall` (~53 tokens)

Recall memories relevant to a query, ranked, within an optional token_budget. Surfaces conflicting memories instead of silently choosing.

Input parameters:

- `query` (string, required)
- `token_budget` (integer)
- `type` (string)

### `forget` (~28 tokens)

Delete a memory by id. Returns whether a memory was removed.

Input parameters:

- `memory_id` (string, required)

### `search` (~72 tokens)

Search vault notes by relevance; returns ranked snippets within an optional token_budget (never whole notes). mode: hybrid (default) | lexical | semantic. Expand with get_note.

Input parameters:

- `mode` (string)
- `query` (string, required)
- `token_budget` (integer)
- `top_k` (integer)

### `get_note` (~55 tokens)

Fetch a note progressively: outline (headings) | frontmatter_only | full, with an optional max_tokens ceiling.

Input parameters:

- `format` (string)
- `max_tokens` (integer)
- `note_id` (string, required)

### `graph_query` (~52 tokens)

Traverse the wikilink graph: links (outgoing) | backlinks | neighbors (both directions, to depth).

Input parameters:

- `depth` (integer)
- `from` (string, required)
- `relation` (string, required)

### `list_notes` (~18 tokens)

List all note ids with their titles and paths.

### `propose_changes` (~44 tokens)

Dry-run a changeset (create/update/delete notes). Returns a change_id and a before/after diff. Nothing is written until commit_changes.

Input parameters:

- `ops` (array, required)

### `commit_changes` (~38 tokens)

Atomically apply a previously proposed change_id (all-or-nothing). Returns a version_id usable with revert.

Input parameters:

- `change_id` (string, required)

### `revert` (~29 tokens)

Undo a committed change by version_id, restoring the prior note state.

Input parameters:

- `version_id` (string, required)

### `create_note` (~52 tokens)

Create a note (auto-committed). Fails if it already exists. Returns a version_id.

Input parameters:

- `content` (string, required)
- `frontmatter` (object)
- `note_id` (string, required)

### `update_note` (~50 tokens)

Update a note body and/or frontmatter (auto-committed). Returns a version_id.

Input parameters:

- `content` (string)
- `frontmatter` (object)
- `note_id` (string, required)

### `link` (~45 tokens)

Append a [[to]] wikilink to the `from` note (idempotent). Returns a version_id.

Input parameters:

- `from` (string, required)
- `to` (string, required)

### `tag` (~38 tokens)

Add a tag to a note (deduplicated). Returns a version_id.

Input parameters:

- `note_id` (string, required)
- `tag` (string, required)

### `audit_log` (~29 tokens)

Read recent agent actions (commits/reverts), most recent first.

Input parameters:

- `limit` (integer)

### `capabilities` (~16 tokens)

List available tools and the current permission scope.

## Diagnostics

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

## Score history

- 2026-08-03: 62
- 2026-08-02: 61
- 2026-08-01: 33
- 2026-07-31: 18
- 2026-07-30: 42
- 2026-07-28: 42
- 2026-07-27: 42

## Links

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