# Xentropy Notes — Memory Layer for AI (npm · @xentropy/mcp)

Semantic search and knowledge graph for your Wall notes from Claude Code and MCP clients.

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

> **Deprecated**: this server is marked deprecated in the MCP registry.

## Components

- npm · `@xentropy/mcp`: 63/100 (this document), [markdown](https://verifymcp.io/servers/xjpru-xentropy-notes/xentropy-mcp.md), [page](https://verifymcp.io/servers/xjpru-xentropy-notes/xentropy-mcp)

## Channel facts

- Registry: `npm`
- Package: `@xentropy/mcp`
- Version: `0.3.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**: 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**: 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 39 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 803 tokens (~80/item across 10 items; 10 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 96/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 88% 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 xjpru-xentropy-notes -- npx -y @xentropy/mcp
```

### Codex

```bash
codex mcp add xjpru-xentropy-notes -- npx -y @xentropy/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add xjpru-xentropy-notes --command npx --arg -y --arg @xentropy/mcp
```

### Hermes

```yaml
mcp_servers:
  xjpru-xentropy-notes:
    command: "npx"
    args: ["-y", "@xentropy/mcp"]
```

### Other

```json
{
  "mcpServers": {
    "xjpru-xentropy-notes": {
      "command": "npx",
      "args": [
        "-y",
        "@xentropy/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-02 (score 63, +48)

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

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

- [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, −40)

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

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

First indexed and scored.

## MCP tools (10)

### `ping` (~30 tokens)

Ping

Health check. Returns 'pong' with the server version and time, confirming the Xentropy MCP connection is live.

### `search_notes` (~68 tokens)

Search notes

Semantic search across your Wall notes. Returns the most relevant notes (id, title, snippet, similarity score); call get_note for full text. Requires a Pro plan.

Input parameters:

- `limit` (integer): Max results (default 10)
- `query` (string, required): What to search your notes for

### `list_notes` (~105 tokens)

List notes

List your Wall notes, newest first. Optional filters: folder, type, archived, and a case-insensitive substring query. Returns compact rows; call get_note for full text.

Input parameters:

- `archived` (boolean): Show archived notes instead of active ones
- `folder` (string): Folder id, or 'unfiled' for notes with no folder
- `limit` (integer)
- `query` (string): Case-insensitive substring filter
- `type` (string)

### `get_note` (~39 tokens)

Get note

Fetch a single note by id with its full text (body or voice transcript), AI summary, and tags.

Input parameters:

- `id` (string, required): Note id

### `get_related_notes` (~44 tokens)

Get related notes

Find notes semantically related to a given note id (most similar first).

Input parameters:

- `id` (string, required): Note id to find neighbors of
- `limit` (integer)

### `list_folders` (~27 tokens)

List folders

List your folders (directories), for use as the `folder` filter in list_notes.

### `create_note` (~106 tokens)

Create note

Create a new Wall note. `body` is required; `title` and `folder` (a directory id to file it into) are optional. Filing into a directory that has a format prompt auto-formats the note. Returns the created note with its id.

Input parameters:

- `body` (string, required): The note text (required)
- `folder` (string): Directory id to file it into; omit or 'unfiled' for none
- `title` (string): Optional title

### `update_note` (~122 tokens)

Update note

Update an existing note by id. Provide at least one of `title`, `body`, or `folder`; omitted fields are left unchanged. Set `folder` to 'unfiled' to move the note to the root. Returns the updated note.

Input parameters:

- `body` (string): New body text (replaces the current body)
- `folder` (string): Move to this directory id; 'unfiled' for the root; omit to leave as-is
- `id` (string, required): Note id to update
- `title` (string): New title

### `create_directory` (~130 tokens)

Create directory

Create a new directory (folder) to organize notes. `name` is required; optional `parent` (a directory id to nest under), `formatInstructions` (a house-style prompt notes filed here are auto-formatted to), and `icon` (emoji). Returns the created directory with its id.

Input parameters:

- `formatInstructions` (string): House-style prompt for notes filed into this directory
- `icon` (string): Display emoji/token
- `name` (string, required): Directory name (required)
- `parent` (string): Parent directory id to nest under; omit or 'root' for top-level

### `update_directory` (~132 tokens)

Update directory

Update a directory by id. Provide at least one of `name`, `parent`, `formatInstructions`, or `icon`; omitted fields are left unchanged. Set `parent` to 'root' to move it to the top level. Returns the updated directory.

Input parameters:

- `formatInstructions` (string): New house-style prompt for notes filed here
- `icon` (string): New display emoji/token
- `id` (string, required): Directory id to update
- `name` (string): New name
- `parent` (string): Move under this directory id; 'root' for top-level; omit to leave as-is

## Diagnostics

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

## Score history

- 2026-08-03: 63
- 2026-08-02: 63
- 2026-08-01: 15
- 2026-07-31: 15
- 2026-07-30: 0
- 2026-07-28: 40
- 2026-07-27: 40

## Links

- npm package: https://www.npmjs.com/package/@xentropy/mcp
- Socket report: https://socket.dev/npm/package/@xentropy/mcp
- Changelog RSS feed: https://verifymcp.io/servers/xjpru-xentropy-notes/xentropy-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/xjpru-xentropy-notes/xentropy-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/xjpru-xentropy-notes/xentropy-mcp
