# io.github.jyswee/agenticmemory (remote · mcp.agenticmemory.ai)

Persistent memory for AI agents — history, context, semantic search, queues. 17 tools, stdio/SSE.

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

> **Malware flagged**: A supply-chain scanner flagged a high-severity malware risk in another channel of this server. Treat this server as unsafe to install until the finding is cleared. Flagged: npm · agmry.

## Components

- remote · `mcp.agenticmemory.ai`: 60/100 (this document), [markdown](https://verifymcp.io/servers/jyswee-agenticmemory/mcp.md), [page](https://verifymcp.io/servers/jyswee-agenticmemory/mcp)
- npm · `agmry`: 48/100, [markdown](https://verifymcp.io/servers/jyswee-agenticmemory/agmry.md), [page](https://verifymcp.io/servers/jyswee-agenticmemory/agmry)

## Channel facts

- Endpoint: `https://mcp.agenticmemory.ai/sse`
- Transports: `sse`
- Auth: `none`
- Version: `1.8.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, 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.

- **Endpoint Security**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation check failed: no authorisation is required to call this server, and it exposes a tool marked destructive (memory_store).
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 40/100
  - Verified sse transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 70/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 895 tokens (~52/item across 17 items; 17 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**: 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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http jyswee-agenticmemory https://mcp.agenticmemory.ai/sse
```

### Codex

```toml
[mcp_servers.jyswee-agenticmemory]
url = "https://mcp.agenticmemory.ai/sse"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "jyswee-agenticmemory": {
      "type": "remote",
      "url": "https://mcp.agenticmemory.ai/sse",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add jyswee-agenticmemory --url https://mcp.agenticmemory.ai/sse --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  jyswee-agenticmemory:
    url: "https://mcp.agenticmemory.ai/sse"
```

### Other

```json
{
  "mcpServers": {
    "jyswee-agenticmemory": {
      "type": "http",
      "url": "https://mcp.agenticmemory.ai/sse"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## 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 60, +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-01 (score 59, +1)

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

### 2026-07-31 (score 58, 0)

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

### 2026-07-30 (score 58, −2)

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

### 2026-07-29 (score 60, +1)

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

### 2026-07-28 (score 59, +1)

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

### 2026-07-27 (score 58, 0)

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

### 2026-07-26 (score 58)

First indexed and scored.

## MCP tools (17)

### `memory_store` (~62 tokens)

Store a message in conversation history. Use for remembering what just happened.

Input parameters:

- `content` (string, required): Message content
- `role` (string): Role: user, assistant, system, tool (default: user)
- `spaceId` (string, required): Memory space ID

Output parameters:

- `_id` (string): Message ID
- `content` (string): Message text
- `createdAt` (string): ISO 8601 creation timestamp
- `metadata` (object): Optional caller-supplied metadata
- `role` (string): Message role: user, assistant, system, or tool
- `seq` (number): Monotonic sequence number within the space
- `spaceId` (string): Owning memory space ID

### `memory_store_batch` (~41 tokens)

Store multiple messages at once.

Input parameters:

- `messages` (array, required): Array of {role, content} messages
- `spaceId` (string, required): Memory space ID

Output parameters:

- `messages` (array): The stored messages

### `memory_recall` (~48 tokens)

Recall recent messages from conversation history. Returns newest first.

Input parameters:

- `limit` (number): Number of messages to return (default: 20)
- `spaceId` (string, required): Memory space ID

Output parameters:

- `encrypted` (boolean): True if the space is end-to-end encrypted (content is ciphertext)
- `messages` (array): Recalled messages, newest first

### `memory_clear` (~27 tokens)

Clear all messages in a memory space.

Input parameters:

- `spaceId` (string, required): Memory space ID

Output parameters:

- `cleared` (boolean): True when messages were cleared

### `memory_search` (~67 tokens)

Semantic search across past conversations. Finds by meaning, not keywords.

Input parameters:

- `limit` (number): Max results (default: 10)
- `query` (string, required): Natural language search query
- `spaceId` (string, required): Memory space ID
- `tags` (array): Filter by tags

Output parameters:

- `count` (number): Number of results returned
- `results` (array): Matching entries ranked by semantic relevance

### `context_set` (~60 tokens)

Set a key-value context entry. Stores structured data (JSON or string).

Input parameters:

- `key` (string, required): Context key name
- `spaceId` (string, required): Memory space ID
- `value` (required): Value to store (string, number, object, array)

Output parameters:

- `key` (string): The key that was set
- `value`: The stored value (string, number, object, or array)

### `context_get` (~36 tokens)

Get a context value by key.

Input parameters:

- `key` (string, required): Context key name
- `spaceId` (string, required): Memory space ID

Output parameters:

- `encrypted` (boolean): True if the space is end-to-end encrypted (value is ciphertext)
- `key` (string): The requested key
- `value`: The stored value (string, number, object, or array)

### `context_list` (~29 tokens)

List all context keys and values in a space.

Input parameters:

- `spaceId` (string, required): Memory space ID

Output parameters:

- `context` (object): Map of every context key to its stored value
- `encrypted` (boolean): True if the space is end-to-end encrypted (values are ciphertext)

### `context_delete` (~35 tokens)

Delete a context key.

Input parameters:

- `key` (string, required): Context key to delete
- `spaceId` (string, required): Memory space ID

Output parameters:

- `deleted` (boolean): True when the key was deleted

### `entry_add` (~82 tokens)

Add a long-term memory entry (summary, decision, extraction, artifact).

Input parameters:

- `content` (string): Entry content
- `spaceId` (string, required): Memory space ID
- `tags` (array): Tags for filtering
- `title` (string, required): Entry title
- `type` (string): Type: extraction, summary, decision, artifact (default: extraction)

Output parameters:

- `entry` (object)

### `entries_list` (~57 tokens)

List long-term memory entries. Filter by tags.

Input parameters:

- `limit` (number): Max entries (default: 20)
- `spaceId` (string, required): Memory space ID
- `tags` (string): Comma-separated tags to filter by

Output parameters:

- `encrypted` (boolean): True if the space is end-to-end encrypted (content is ciphertext)
- `entries` (array): Matching long-term entries

### `spaces_list` (~18 tokens)

List all memory spaces owned by this API key.

Output parameters:

- `spaces` (array): Every memory space owned by the caller

### `spaces_create` (~33 tokens)

Create a new memory space.

Input parameters:

- `name` (string, required): Space name
- `slug` (string, required): URL-safe slug

Output parameters:

- `space` (object)

### `queue_push` (~84 tokens)

Enqueue a JSON envelope onto a FIFO queue in a memory space. Use to send work/events to other agents sharing the space.

Input parameters:

- `envelope` (object, required): JSON envelope to enqueue (opaque to the server)
- `queue` (string, required): Queue name (lowercase alphanumeric plus . _ : -, max 64 chars)
- `spaceId` (string, required): Memory space ID

Output parameters:

- `length` (number): Queue length after the push
- `queue` (string): Queue name
- `queued` (boolean): True when the envelope was enqueued

### `queue_pop` (~84 tokens)

Dequeue the oldest envelope from a FIFO queue (returns null if empty). Set wait (max 25s) to long-poll for the next envelope.

Input parameters:

- `queue` (string, required): Queue name
- `spaceId` (string, required): Memory space ID
- `wait` (number): Long-poll seconds, 0-25 (default: 0 = return immediately)

Output parameters:

- `empty` (boolean): True when the queue was empty
- `encrypted` (boolean): True if the space is end-to-end encrypted (item is ciphertext)
- `item` (object|null): The dequeued envelope, or null if the queue was empty
- `queue` (string): Queue name

### `queue_peek` (~43 tokens)

Peek at a queue without consuming: returns length and the head envelope.

Input parameters:

- `queue` (string, required): Queue name
- `spaceId` (string, required): Memory space ID

Output parameters:

- `head` (object|null): The head envelope without consuming it, or null if empty
- `length` (number): Current queue length
- `queue` (string): Queue name

### `memory_bootstrap` (~89 tokens)

Load full context in one call: recent messages, entries, context, scratchpad. Run this at session start.

Input parameters:

- `entries` (number): Number of entries to include (default: 10)
- `messages` (number): Number of messages to include (default: 20)
- `query` (string): Semantic query for relevant entries
- `spaceId` (string, required): Memory space ID

Output parameters:

- `activeThreads` (array): Active conversation threads
- `contextEncoding` (string): Context encoding mode (json or lln)
- `encryption` (string): Encryption mode: none, managed, or e2e
- `entities` (array): Known entities in the space
- `llnPrimer` (string): LLN primer mode (inline, system, or none)
- `recentEntries` (array): Most recent long-term entries
- `recentMessages` (array): Most recent messages
- `semanticEntries` (array): Entries matched by the optional semantic query
- `shared` (object): Shared world context visible to all agents in the space
- `state` (object): Current working state for the space

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/jyswee-agenticmemory/mcp#diagnostics

## Score history

- 2026-08-03: 60
- 2026-08-02: 59
- 2026-08-01: 59
- 2026-07-31: 58
- 2026-07-30: 58
- 2026-07-29: 60
- 2026-07-28: 59
- 2026-07-27: 58
- 2026-07-26: 58

## Links

- Remote endpoint: https://mcp.agenticmemory.ai/sse
- Repository: https://github.com/jyswee/agenticmemory
- Website: https://agenticmemory.ai/
- Changelog RSS feed: https://verifymcp.io/servers/jyswee-agenticmemory/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/jyswee-agenticmemory/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/jyswee-agenticmemory/mcp
