# io.github.uuaid/mcp (npm · @uuaid/mcp)

Permanent identity + encrypted, quantum-ready memory that outlives the session, for any AI agent.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@uuaid/mcp`
- 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-07.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 33 of 107 dependencies flagged as unhealthy.
- **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 (Apache-2.0).
  - Actively maintained (last published 33 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 645 tokens (~71/item across 9 items; 9 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 37/100
  - Stability observed for 11 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 92/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 77% 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 uuaid-mcp -- npx -y @uuaid/mcp
```

### Codex

```bash
codex mcp add uuaid-mcp -- npx -y @uuaid/mcp
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add uuaid-mcp --command npx --arg -y --arg @uuaid/mcp
```

### Hermes

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

### Other

```json
{
  "mcpServers": {
    "uuaid-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@uuaid/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-07 (score 71, +4)

- [security improvement] Known CVEs: partial → pass
- [functional] Dependency health: partial → 0.86

### 2026-08-05 (score 67, +1)

- [security improvement] CVE-2026-69207 no longer affects this package
- [security improvement] Known CVEs: fail → partial

### 2026-08-04 (score 66, +3)

- [security regression] CVE-2026-69207 affects this package: medium
- [security regression] Known CVEs: partial → fail
- [functional improvement] Stability: unverified → 0.27

### 2026-08-02 (score 63, +43)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] License: unverified → pass
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: Apache-2.0

### 2026-07-31 (score 20, −4)

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

### 2026-07-28 (score 24, −21)

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

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

First indexed and scored.

## MCP tools (9)

### `uuaid_signup` (~89 tokens)

One-time self-serve signup: mints a free-tier UUAID API key (10 MB encrypted memory per agent). Returns the key ONCE — the operator must save it as UUAID_API_KEY (and generate UUAID_VAULT_KEY). Rate-limited.

Input parameters:

- `name` (string, required): A name for this workspace/operator, e.g. 'Ana's Agent Lab'

### `mint_identity` (~86 tokens)

Mint a PERMANENT UUAID identity for this agent (do this once, then reuse it — set it as UUAID_AGENT). The identity is publicly resolvable, ledger-recorded, and anchored on Polygon.

Input parameters:

- `description` (string): What this agent is/does
- `display_name` (string, required): The agent's name, e.g. 'Aria'

### `whoami` (~21 tokens)

Show the configured partner, default agent identity, and vault status.

### `save_memory` (~123 tokens)

Encrypt (client-side, AES-256-GCM) and persist a memory under a key path (e.g. 'core/persona', 'projects/x/notes'). Survives forever across sessions; the service stores only ciphertext; the content hash is ledger-anchored on-chain.

Input parameters:

- `agent_uuaid` (string): Defaults to UUAID_AGENT
- `content` (string, required): The memory text to persist
- `key` (string, required): Slot path, e.g. 'core/persona' or 'memories/2026-07-03'

### `recall_memory` (~42 tokens)

Fetch and decrypt a memory previously stored with save_memory.

Input parameters:

- `agent_uuaid` (string): Defaults to UUAID_AGENT
- `key` (string, required)

### `list_memories` (~48 tokens)

List this agent's memory slots (keys, sizes, hashes) and vault usage vs quota. Contents stay encrypted.

Input parameters:

- `agent_uuaid` (string): Defaults to UUAID_AGENT

### `delete_memory` (~43 tokens)

Delete one memory slot (the deletion is ledger-recorded).

Input parameters:

- `agent_uuaid` (string): Defaults to UUAID_AGENT
- `key` (string, required)

### `verify_agent` (~49 tokens)

Publicly resolve any UUAID — profile, versions, credentials (no auth needed). Use to verify other agents.

Input parameters:

- `uuaid` (string, required): uuaid:foundation:agent:…

### `get_badge_url` (~41 tokens)

Live SVG trust-badge URLs for an agent — paste into a README to show verified identity/certification.

Input parameters:

- `uuaid` (string, required)

## Diagnostics

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

## Score history

- 2026-08-07: 71
- 2026-08-06: 67
- 2026-08-05: 67
- 2026-08-04: 66
- 2026-08-03: 63
- 2026-08-02: 63
- 2026-08-01: 20
- 2026-07-31: 20
- 2026-07-30: 24
- 2026-07-28: 24
- 2026-07-27: 45

## Links

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