Skip to main content

smart-memory-mcp

Unified SmartMemory MCP (Model Context Protocol) server — tiered tools, local + remote backends.

mcp-name: ai.smartmemory/smartmemory-mcp

Overview

MCP server exposing SmartMemory operations to MCP-compatible clients (Claude Desktop, Cursor, etc.). Implements the full memory toolset (add, search, recall, decisions, plans, anchors, code-index) and routes to either a local SmartMemory instance or a remote smart-memory-service API endpoint.

Status

Version: 0.2.1

Quick start

pip install -e .

# Run the server
smartmemory-mcp        # or python -m smartmemory_mcp

Tests:

pytest tests/ -v

Hosted mode

--hosted serves the multi-tenant, OAuth-protected endpoint that runs at mcp.smartmemory.ai. It is a different server from the stdio and --http modes: every request carries its own credential, and the tool call is executed as that caller against smart-memory-service. The process holds no shared API key and no core SmartMemory instance.

Hosted search and recall ask the service to exclude speculative-derived memories server-side, while retaining client-side tier filtering as defence in depth.

SMARTMEMORY_MCP_MODE=hosted smartmemory-mcp
# or
smartmemory-mcp --hosted

Install with the extra, which adds the Redis-backed OAuth state store:

pip install "smartmemory-mcp[hosted]"

Modes

Mode Command Authentication Tenancy
stdio smartmemory-mcp none, local process single identity
http smartmemory-mcp --http none single identity, loopback by default
hosted smartmemory-mcp --hosted Clerk OAuth or a SmartMemory API key per request

--http has no per-request authentication, so every caller of it acts as whoever the process's API key belongs to. It therefore binds 127.0.0.1 and logs a warning if asked for anything else. Set SMARTMEMORY_MCP_ALLOW_UNAUTH_HTTP=true to override that deliberately. Use --hosted if what you want is a server on the network.

Environment

All of these are required in hosted mode. A missing one raises at startup, naming the variable.

Variable Meaning
SMARTMEMORY_API_URL Base URL of smart-memory-service
MCP_PUBLIC_BASE_URL Public URL of this server, e.g. https://mcp.smartmemory.ai
CLERK_DOMAIN Clerk instance domain
CLERK_OAUTH_CLIENT_ID Clerk OAuth application client id
CLERK_OAUTH_CLIENT_SECRET Clerk OAuth application client secret
MCP_JWT_SIGNING_KEY Signs the reference tokens issued to MCP clients
MCP_STATE_ENCRYPTION_KEY Fernet key encrypting all stored OAuth state
MCP_REDIS_URL Redis holding OAuth state, ideally its own instance

Optional:

Variable Default Meaning
MCP_ALLOWED_CLIENT_REDIRECTS the six built-in patterns Comma-separated client callback allowlist
SMARTMEMORY_WEB_URL https://app.smartmemory.ai Web app URL shown when an invited beta user must accept the agreement
MCP_HOSTED_PORT 8012 Port to bind
MCP_TRUST_PROXY false Honour X-Forwarded-For for rate limiting. Only true behind our own reverse proxy

Set MCP_JWT_SIGNING_KEY explicitly. Left unset, the signing key is derived from the Clerk client secret, which ties rotating that secret to invalidating every token already issued.

Tools

Hosted mode advertises 25 tools, an explicit allowlist rather than a tier:

memory_ingest memory_search memory_recall read_around memory_get memory_explain memory_recall_pack memory_policy_bundle memory_add memory_update memory_delete memory_list memory_stats memory_distill memory_ingest_conversation memory_search_by_metadata memory_feedback code_search code_dead_code code_dependencies agent_set_recall_profile agent_get_recall_profile reasoning_query_traces whoami switch_team

Everything else is hidden, and hidden is the default, so a tool added to a shared module does not appear here until it is added to the allowlist. Three kinds of tool are excluded on purpose:

  • Anything that reads or writes a filesystem path. The container's disk is shared by every tenant, so memory_export, memory_import, code_index, code_blame and the rest are out.
  • Anything that needs a local SmartMemory instance. Tools reaching for backend._mem or the core graph cannot work against a REST backend.
  • Destructive bulk operations, such as memory_clear.

Two tools have options that cannot work here and refuse them rather than quietly ignoring the request:

  • memory_search(cite=True) — citation formatting lives in the smartmemory core package, which the hosted server does not ship.
  • memory_recall(session_id=…) and memory_recall(cite=True) — the alternative recall path builds a working context through the core activation scorer.

switch_team changes the workspace for the current session only. It validates membership against the API and never leaks into another user's calls.

Client configuration

Claude Code:

claude mcp add --transport http smartmemory https://mcp.smartmemory.ai/mcp

The first tool call opens a browser for consent. Claude Code registers itself through client id metadata, so nothing needs to be created in advance.

Claude.ai custom connector: add a connector with the URL https://mcp.smartmemory.ai/mcp and complete the OAuth prompt.

Grok web: add a connector with the same URL. Grok asks for a client id rather than registering dynamically, so paste the SmartMemory MCP OAuth application client id when prompted.

xAI API and Grok Build take a static bearer token instead of an OAuth flow, so give them a SmartMemory API key:

{
  "type": "mcp",
  "server_url": "https://mcp.smartmemory.ai/mcp",
  "authorization": "sm_live_your_key_here"
}

An API key skips the OAuth flow entirely and acts as its owner in that owner's default workspace. Legacy sk_ keys are accepted.

Documentation

Full SmartMemory documentation: https://docs.smartmemory.ai

Part of SmartMemory

This is one component of the SmartMemory ecosystem. See the main repo for the broader project.

Lexical search migration

Search uses lexical with default weight 0.8. Replace removed contains and keyword-bm25 channel weights explicitly. A zero weight disables lexical, and omission preserves the existing default/profile behavior. Required lexical unavailability fails the whole search. Service callers receive 400 for query/name validation and 503 for unavailable indexes.

Local tools, hosted search and the remote backend validate the same names. Failed search returns an MCP error result, including connection failure.

Quiesce old writers before first-open indexing. Verify the engine capability pin and use sm rebuild --lexical for recovery. Migration, targets and measured limitations.

Release files for smartmemory-mcp 1.4.96

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distribution (wheel)

Table of built distributions (wheels) for smartmemory-mcp 1.4.96
File Interpreter ABI Platform
smartmemory_mcp-1.4.96-py3-none-any.whl Python 3 none any Details

Release files / smartmemory_mcp-1.4.96-py3-none-any.whl

Download URL smartmemory_mcp-1.4.96-py3-none-any.whl
Size 121.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
a273b62e624ce72029dd07c98adf6ce66a9b012997ee26a7c0c305f2ee2680e9
BLAKE2b-256 checksum
How to use checksums
ac8f8171410d70a0b1f29341b77827192ecefcf532f9eb5995a22ed705b2997b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.12.7

Release history Release notifications | RSS feed

1.4.121

1 release file

1.4.120

1 release file

1.4.119

1 release file

1.4.100

1 release file

This release

1.4.96 This release

1 release file

1.4.93

1 release file

1.4.92

1 release file

1.4.91

1 release file

1.4.88

1 release file

1.4.87

1 release file

1.4.86

1 release file

1.4.85

1 release file

1.4.67

1 release file

1.4.64

1 release file

1.4.61

1 release file

1.4.60

1 release file

1.4.57

1 release file

1.4.53

2 release files

1.4.51

2 release files

1.4.50

2 release files

1.4.49

2 release files

1.4.48

2 release files

1.4.47

2 release files

1.4.46

2 release files

0.2.4

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page