Skip to main content
Glama
20vision

mymemory-mcp

by 20vision

mymemory-mcp

One memory for every AI. MyMemory is a user-owned, portable memory vault: import your context once (CLAUDE.md, custom instructions, bios), and every AI tool you use reads the same distilled entries. Agents propose new memories after conversations; proposals land in a pending queue you promote or reject. The memory belongs to you, not a lab. This package is the vault as an MCP server: 3 tools, zero install beyond npm.

Your context, portable. — myclawn.com/mymemory

Quick start

Get an API key first: open https://www.myclawn.com/mymemory, sign in with a passkey, and create a key in the Keys view. Keys look like mm_… and are shown once — the read + propose scopes cover everything below.

Claude Code

claude mcp add mymemory -e MYMEMORY_API_KEY=mm_your_key -- npx -y mymemory-mcp

Claude Desktop (claude_desktop_config.json)

{
  "mcpServers": {
    "mymemory": {
      "command": "npx",
      "args": ["-y", "mymemory-mcp"],
      "env": {
        "MYMEMORY_API_KEY": "mm_your_key"
      }
    }
  }
}

Any other MCP client: serve over stdio with command npx and args ["-y", "mymemory-mcp"]; the key goes in the MYMEMORY_API_KEY env var. Self-hosted or testing against a local app? Point MYMEMORY_BASE_URL at the origin (default https://www.myclawn.com).

Related MCP server: SOMA MCP

What your agent can do

Tool

What

mymemory_get_context

Fetch the vault's compiled context block (directives first, then facts/preferences/notes) plus the raw entries — call once at conversation start

mymemory_search

Case-insensitive substring search over active entries ({query}{count, matches})

mymemory_propose

Propose up to 20 {kind, text} entries (directive / fact / preference / note) — they land pending until you approve them in the app

The API key's scopes gate the verbs: read covers context + search, propose covers proposing. A read-only key proposing gets a clear 403.

What it deliberately does NOT do

No approving/rejecting entries, no editing the vault, no minting or revoking keys — curation stays with the human at myclawn.com/mymemory, where every proposed entry waits in a review queue. This package is the read/propose surface: agents remember, you decide.

  • The vault app: https://www.myclawn.com/mymemory

  • API + pairing surface: https://www.myclawn.com/api/mymemory/*

  • iOS app source (pairs via 6-char code): ios/ in the monorepo

Decisions

  • Search is client-side. The API contract defines no search route, so mymemory_search fetches /api/mymemory/context once and filters entries by case-insensitive substring over text (and kind, so "directive" lists all rules). Simple and fine at vault sizes.

  • mymemory_get_context returns text-first. The compiled context_block leads the tool result (paste-ready), followed by the raw entries as JSON for structured use.

  • MYMEMORY_BASE_URL is the origin, not the full API prefix; routes are appended as /api/mymemory/…. Trailing slashes are tolerated.

  • Engines node >=22 per the build contract (sibling myclawn-mcp says >=20; the contract wins).

  • Registry metadata (server.json / smithery.yaml) ships in this package; submission steps live in docs/registry-submissions.md. The package is publish-ready (publishConfig.access: public).

MIT © MyClawn

Available Tools

3 tools
mymemory_get_contextA

Fetch the user's MyMemory vault context: a compiled context_block (directives first, then facts/preferences/notes, one per line) plus the raw active entries. Call once at conversation start and apply it — these are the user's standing rules, facts, and preferences across every AI tool they use.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It discloses the content structure (context_block format, directives-first ordering) which is genuinely useful behavioral info. It doesn't mention authentication requirements, pagination, or failure modes, but for a zero-parameter read-only fetch tool the disclosure is reasonably complete for what's exposed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose then structure then usage guidance. Slightly dense single paragraph but every clause earns its place. Could optionally be split into bullet points but it's efficient as written.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

A zero-parameter, no-output-schema tool with clear READ semantics. The description covers what it returns, the internal structure, when to call it, and what to do with the result. For a simple fetch tool this is fully complete — nothing meaningful is left unexplained.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

There are 0 parameters and schema coverage is 100%, making parameter semantics a non-issue. The dimension baseline for 0 params is 4, and the description adds context about what behavior to expect without parameters (returns full context).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear verb (Fetch) + specific resource (user's MyMemory vault context) with detailed description of what's returned (compiled context_block with directives/facts/preferences/notes structure plus raw active entries). Distinguishes well from siblings: get_context returns the full compiled context while search/propose serve different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states 'Call once at conversation start and apply it' — gives a precise trigger condition. The description's ending ('these are the user's standing rules, facts, and preferences across every AI tool they use') explains why this tool matters and implies it should be prioritized early, which differentiates it from alternative sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

mymemory_proposeA

Propose new entries to the user's MyMemory vault when you learn something durable about them. Entries land in a PENDING queue the human reviews in the app — nothing becomes active without their approval. Only propose lasting cross-session knowledge (a rule, fact, preference, or note about the user), never one-off task details or things already in the vault. kinds: directive = a rule ("never …", "always …"), fact, preference, note. Max 20 per call; the server dedupes against existing entries.

ParametersJSON Schema
NameRequiredDescriptionDefault
entriesYes

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It effectively discloses that entries go to a PENDING queue, that nothing activates without human approval, that there's a max of 20 per call, and that the server dedupes. This is strong behavioral transparency for a write tool with no annotation support.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single cohesive paragraph that front-loads the core purpose, then layers in constraints in logical order — durable-only scope, kind taxonomy, limits, dedupe behavior. Every sentence earns its place, with no wasted words or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter write tool with no output schema, the description covers the essential usage context well: what to propose, what not to propose, the kinds, limits, and review flow. The only minor gap is that it doesn't specify return confirmation behavior, but this is less critical given no output schema is expected.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for the undocumented 'entries' parameter. It does by explaining what kinds are available (directive, fact, preference, note with examples for directive) and explaining the dedupe and pending-queue behavior. The description adds meaning beyond the bare schema, though it doesn't detail the text length constraints or per-kind examples exhaustively.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states what the tool does: propose new entries to the user's MyMemory vault with a specific verb ('propose') and resource ('MyMemory vault'). It distinguishes from siblings by clarifying this is about writing new durable knowledge, while get_context and search are likely read operations. However, it doesn't explicitly contrast against the siblings, so it's clear but not fully differentiated within the sibling set.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use guidance ('when you learn something durable about them'), what NOT to propose ('never one-off task details or things already in the vault'), and the kinds taxonomy. It also explains the pending-queue approval model. This is exemplary usage guidance, clearly stating scope and exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 3 tool updatesv0.1.0
    • First observedmymemory_get_context
    • First observedmymemory_propose
    • First observedmymemory_search

TDQS

A4.1/5.0

Scored across 3 tools

Disambiguation4/5

The three tools have distinct purposes: get_context (retrieve full vault), search (find specific entries), and propose (add new entries). While get_context and search both read data, their purposes are clearly separated (bulk fetch vs. targeted lookup), and propos e is clearly a write operation. No meaningful ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent mymemory_<verb> pattern: get_context, search, propose. The verbs are uniform and descriptive, and each name clearly signals its operation (retrieval, lookup, and write). The mymemory_ prefix consistently scopes the namespace.

Tool Count3/5

Three tools is on the thin side but understandable for a personal memory vault: fetch, search, and write. The scope is narrow enough that three tools could work, though one might expect an explicit update/delete mechanism. It's at the lower boundary of reasonable.

Completeness3/5

The vault supports retrieval (get_context), search, and creation (propose, gated by PENDING approval). However, there's no tool to update or delete existing active entries, nor to approve the pending queue, meaning maintenance of the vault is delegated entirely to the human in the app. This leaves some lifecycle gaps beyond the core read/write flow.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    A private, self-hosted MCP server that wraps a retrieval pipeline over your own data, enabling trusted AI agents to access and manage your personal memory through standard MCP tools.
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    A portable self-hosted memory layer for AI tools, storing context, memories, and handoffs for access from any MCP-compatible client.
    17 npm
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    A personal memory MCP server that stores and retrieves conversation memories, enabling AI agents to recall past discussions, promises, and preferences using natural language.
    -