# io.github.parallelromb/smara (npm · @smara/mcp-server)

Persistent cross-platform memory for AI agents with Ebbinghaus decay scoring.

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@smara/mcp-server`
- Version: `2.0.2`
- 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-04.

- **Supply Chain Security**: 83/100
  - No malware found by supply-chain analysis.
  - CVE check failed: a known medium-severity CVE affects hono 4.12.33, reached via @modelcontextprotocol/sdk > hono. A fixed version is available.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (95 of 99), 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 117 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 68/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 695 tokens (~139/item across 5 items; 5 tools + 0 resources), over budget; trim descriptions and params.
  - 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 parallelromb-smara -- npx -y @smara/mcp-server
```

### Codex

```bash
codex mcp add parallelromb-smara -- npx -y @smara/mcp-server
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add parallelromb-smara --command npx --arg -y --arg @smara/mcp-server
```

### Hermes

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

### Other

```json
{
  "mcpServers": {
    "parallelromb-smara": {
      "command": "npx",
      "args": [
        "-y",
        "@smara/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-04 (score 67, +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 64, +59)

- [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] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 5, −15)

- [functional regression] Tool coverage: 100 → unverified

### 2026-07-31 (score 20, +14)

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

### 2026-07-30 (score 6, −39)

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

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

First indexed and scored.

## MCP tools (5)

### `store_memory` (~124 tokens)

Store Memory

Store a fact or preference about a user. Smara handles deduplication and contradiction detection automatically. Use importance 0.1-0.3 for trivia, 0.5 for general facts, 0.7-1.0 for critical preferences.

Input parameters:

- `fact` (string, required): The fact or preference to remember
- `importance` (number): Importance score (0-1). Higher = slower decay.
- `namespace` (string): Memory namespace for isolation (default: from env or 'default')
- `user_id` (string, required): Unique identifier for the user

### `search_memories` (~86 tokens)

Search Memories

Semantic search across stored memories for a user. Ranked by Temporal Memory Scoring — balances semantic relevance with memory freshness and importance.

Input parameters:

- `limit` (number): Max results to return
- `namespace` (string): Memory namespace (default: from env or 'default')
- `q` (string, required): Natural language search query
- `user_id` (string, required): User to search memories for

### `get_user_context` (~111 tokens)

Get User Context

Retrieve a pre-formatted context string for a user, ready to inject into an LLM system prompt. Ranked by Temporal Memory Scoring. Can be called without a query to get the most important recent memories.

Input parameters:

- `namespace` (string): Memory namespace (default: from env or 'default')
- `q` (string): Optional query to focus the context on a topic
- `top_n` (number): Number of top memories to include
- `user_id` (string, required): User to get context for

### `delete_memory` (~36 tokens)

Delete Memory

Delete a specific memory by ID. Use when a user asks to forget something.

Input parameters:

- `id` (string, required): The memory ID to delete

### `get_usage` (~29 tokens)

Get Usage

Check current memory usage — plan, limits, and how many memories are stored. Useful for monitoring quota.

## Diagnostics

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

## Score history

- 2026-08-04: 67
- 2026-08-03: 64
- 2026-08-02: 64
- 2026-08-01: 5
- 2026-07-31: 20
- 2026-07-30: 6
- 2026-07-28: 45
- 2026-07-27: 45

## Links

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