Back to Browse

Polymnemo MCP Server

by PCBZ
Developer ToolsUse Caution4.8MCP RegistryLocalRemote
Free

Server data from the Official MCP Registry

Shared cross-LLM long-term memory over MCP: semantic recall, sessions, and media (pgvector).

About

Shared cross-LLM long-term memory over MCP: semantic recall, sessions, and media (pgvector).

Remote endpoints: streamable-http: https://polymnemo.purpleground-26f6d744.westus2.azurecontainerapps.io/mcp

Security Report

4.8
Use Caution4.8High Risk

polymnemo is a well-architected MCP server for shared long-term memory storage with proper authentication, reasonable permission scopes, and good security practices. The codebase shows careful attention to data isolation (owner-scoped writes, shared namespace visibility), input validation, and secure credential handling. Minor code quality observations around exception handling and logging do not materially impact security. Supply chain analysis found 5 known vulnerabilities in dependencies (1 critical, 3 high severity).

6 files analyzed ยท 9 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

database

Check that this permission is expected for this type of plugin.

env_vars

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

File System Write

Writes or modifies files on your machine. Check that this is expected for the tool.

What You'll Need

Set these up before or after installing:

*(unset)*Optional

Environment variable: POLYMNEMO_DATABASE_URL

*(empty)*Optional

Environment variable: POLYMNEMO_API_KEYS

sharedOptional

Environment variable: POLYMNEMO_SHARED_NAMESPACES

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

polymnemo

CI License: MIT

Python MCP Postgres Neon SQLAlchemy Pydantic Cloudflare R2 Azure Cloud Run Terraform Docker pytest Ruff

A shared long-term memory across any LLM, over MCP.

Point Claude Desktop, an MCP-capable IDE, or any MCP client at one polymnemo endpoint and they share the same memories โ€” stored in your own Postgres. Store a fact with one assistant, recall it from another; save whole sessions and reload them; even attach files, images, or video. Embeddings run locally (no embedding API key), and the server makes no generative-LLM calls.

Status: active development. Semantic memory + pgvector store, session save/reload, and multimedia memories all work; deployable to Azure Container Apps (or Cloud Run) via Terraform. Wiki ยท Issues

Features

  • ๐Ÿ”— Cross-LLM shared โ€” point any MCP client at one endpoint; they share the same memory.
  • ๐Ÿง  Semantic recall โ€” vector search over Postgres + pgvector, not keyword matching.
  • ๐Ÿ’ฌ Sessions โ€” save a full transcript and reload it verbatim, or recall across it.
  • ๐Ÿ–ผ๏ธ Multimedia โ€” attach files, images, or video; bytes go to object storage, only a searchable description is embedded.
  • ๐Ÿ”’ Local & private โ€” embeddings run locally (ONNX): no embedding API key, and no generative-LLM calls, ever.
  • ๐Ÿ‘ฅ Namespaces โ€” "born-shared" collections readable by everyone, vs. private-to-owner; writes are always owner-scoped.
  • ๐Ÿงฉ Pluggable layers โ€” store, embedder, auth, retriever, blob store, and rate limiter are all swappable Protocols.
  • โ˜๏ธ Multi-cloud deploy โ€” one Terraform stack to Azure Container Apps or Cloud Run, scale-to-zero.
  • ๐Ÿšฆ Rate limiting โ€” optional global token bucket.

How it works

flowchart LR
    Clients["MCP clients<br/>(Claude Desktop, IDEs, โ€ฆ)"] -->|"/mcp ยท Bearer key"| P["polymnemo<br/>(MCP server)"]
    P --> DB[("Postgres + pgvector<br/>text + pointers")]
    P -. "large files<br/>(presigned URLs)" .-> OS[("Object storage<br/>S3 / R2")]

A request carries a bearer key (which resolves to a user_id); the tool passes the rate-limit gate, then delegates to a MemoryService that chunks + embeds text and stores the vectors in pgvector โ€” large files go to object storage via presigned URLs, with only a searchable description embedded.

Every layer is a typing.Protocol, wired together by a composition root (context.py), so you can swap an implementation without touching the tools:

LayerDefaultSwap for
StorePostgresStore (pgvector)InMemoryStore (dev/tests)
Embedderfastembed (local ONNX)StubEmbedder (offline)
Authper-user bearer keysstatic single-user (dev)
RetrieverVectorRetrieveryour own ranker
BlobStoreS3 / R2off
RateLimiterglobal token bucketoff

The ping tool returns the active layers, so you can see how a running server is wired.

Quickstart

Requires Python 3.11+.

1. Install

python -m venv .venv
source .venv/bin/activate            # Windows: .venv\Scripts\activate
pip install -e .                     # add ".[dev]" for the test + lint tooling

2. Provision Postgres (pgvector)

The durable store is Postgres + pgvector; the easiest hosted option is Neon (use the pooled connection string). Apply the schema once:

psql "<your-connection-string>" -f scripts/schema.sql

3. Configure

Copy .env.example to .env and set the database URL and at least one API key:

POLYMNEMO_DATABASE_URL=postgresql://user:pass@host/db?sslmode=require
POLYMNEMO_API_KEYS=sk-alice-secret:alice,sk-bob-secret:bob   # "key:user_id" pairs

Each key maps a bearer token to a user_id; writes are scoped to that user.

4. Run

polymnemo                            # Streamable HTTP at http://127.0.0.1:8000/mcp

Or with Docker:

docker build -t polymnemo .
docker run -e POLYMNEMO_DATABASE_URL="..." -e POLYMNEMO_API_KEYS="sk-alice-secret:alice" \
           -e PORT=8080 -p 8080:8080 polymnemo

5. Connect an MCP client

Any client that supports remote (HTTP) MCP servers with custom headers needs two things:

  • Endpoint: http://<host>:<port>/mcp
  • Header: Authorization: Bearer <your-key>

For clients that read an mcpServers config:

{
  "mcpServers": {
    "polymnemo": {
      "url": "http://127.0.0.1:8000/mcp",
      "headers": { "Authorization": "Bearer sk-alice-secret" }
    }
  }
}

Or verify with the inspector:

npx @modelcontextprotocol/inspector
# Transport: Streamable HTTP ยท URL: http://127.0.0.1:8000/mcp
# Header:    Authorization: Bearer sk-alice-secret  โ†’ call ping / remember / recall

Concepts

  • Users & keys โ€” each bearer key maps to a user_id; writes are owner-scoped (you can only edit or delete your own memories).
  • Namespaces โ€” memories live in namespaces. A shared namespace (default shared) is readable by everyone ("born shared"); everything else is private to its owner. Sessions and media default to private namespaces.
  • Chunking โ€” long content is split into chunks on write (one vector each), so remember may return several ids and recall returns the closest chunks.

Tools

polymnemo exposes MCP tools for storing, searching, and managing memories:

  • Memory โ€” remember, recall, list_memories, get_memory, update, forget
  • Sessions โ€” save_session, load_session
  • Media โ€” create_upload, confirm_upload, get_download_url

Plus a ping health check and a memory://{namespace} resource for auto-injecting a collection. Media bytes go to object storage via presigned URLs โ€” never through the MCP channel โ€” with only a searchable description embedded (needs the blob extra).

Full arguments and return shapes live in the dedicated MCP tools reference (coming soon). See Concepts for how keys, namespaces, and chunking work.

Configuration

POLYMNEMO_* environment variables (or .env) โ€” full list in .env.example. The essentials:

VariableDefaultPurpose
POLYMNEMO_DATABASE_URL(unset)Postgres+pgvector DSN. Required in production; unset โ†’ in-memory (dev/tests).
POLYMNEMO_API_KEYS(empty)"key1:alice,key2:bob" โ€” required for bearer auth.
POLYMNEMO_SHARED_NAMESPACESsharedNamespaces readable by every user.
POLYMNEMO_HOST / POLYMNEMO_PORT / POLYMNEMO_MCP_PATH127.0.0.1 / 8000 / /mcpTransport.
POLYMNEMO_RATELIMIT_ENABLED / _PER_MINfalse / 600Optional global rate limit (ops per minute).
POLYMNEMO_BLOB_BACKEND (+ _BUCKET / _ENDPOINT_URL / _ACCESS_KEY_ID / _SECRET_ACCESS_KEY)noneObject storage for media memories; s3 = Cloudflare R2 / S3-compatible.

Development

pip install -e ".[dev]"
pytest                               # fast, offline (stub embedder, in-memory store)
ruff check . && ruff format --check .   # lint + format (enforced in CI)

Postgres tests run when TEST_DATABASE_URL points at a pgvector Postgres. CI (.github/workflows/ci.yml) runs lint + the suite with coverage and posts a pass/fail/coverage table to each run's summary.

Deploy

polymnemo is stateless (all state in Neon + object storage), so it runs on Azure Container Apps (primary) or Google Cloud Run with scale-to-zero. Everything is Terraform in deploy/terraform/: shared neon/ (Postgres) and r2/ (media bucket) roots own the durable state, and a compute root deploys a service that reads both โ€” so memories and media are shared across clouds.

The Azure path deploys from CI in one click: set the GitHub secrets (scripts/setup-github-secrets.sh), bootstrap the state backend (scripts/bootstrap-tfstate-azure.sh), then run the deploy (azure) workflow (neon โ†’ schema โ†’ r2 โ†’ build โ†’ app). GCP is a manual failover. Full walkthrough in docs/deploy.md.

License

MIT โ€” see LICENSE.

Reviews

No reviews yet

Be the first to review this server!