Enigma MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Enigma MCP Serverremember that my birthday is October 5th"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Enigma Memory
A local-first Memory Drive for the AI apps you already use.
For most people, start with the Enigma Memory desktop app. The public launch target is a signed desktop installer with in-app setup; until Windows signing and macOS notarization are complete, use unsigned builds only for testing or wait for the signed release.
Download the desktop app
Go to the download page or the Enigma Memory website.
Check the current platform status. Signed Windows and macOS installers are the consumer target; unsigned development builds are testing-only until signing evidence is complete.
When a signed installer is available for your platform, open it and follow the first-run setup flow.
Enigma creates a local Memory Drive, detects installed AI clients, and previews connection changes before applying them.
The desktop app bundles its runtime. Consumers should not install Node or npm for the default path; command-line setup is advanced developer/troubleshooting material.
The desktop app uses the Memory Controller to show Memory Weather, app permissions, recall approval, and safe to share / not shared decisions before Enigma offers context to a connected app.
Consent grant scopes are canonicalized before verification, so the same app, purpose, operation set, and memory-zone set behave the same regardless of list order without widening what the app may access.
For the public launch desktop flow, pair this with the consumer onboarding UX plan, which keeps app permissions just-in-time and CLI/MCP details secondary.
Related MCP server: Unified Memory MCP
Privacy and proof boundaries
Enigma Memory keeps its canonical Memory Drive on your device. You choose which AI clients are connected and what context they can use. Connected clients may still have their own logs, retention, and caches outside Enigma control.
Enigma proves facts about Enigma-controlled Memory Drive state, receipts, checkpoints, and declared boundary operations. Enigma does not claim facts about a provider's own stored copies, hidden personalization, or model state. Enigma does not claim that a closed provider deleted internal data; it only proves declared Enigma-controlled lifecycle events.
For details, see:
Developer CLI
Developers and power users can use the CLI appendix for npm, MCP stdio, source checkout, and manual JSON examples. This is not the default consumer setup.
Install with npm
Prerequisites:
Node.js
>=24A private local bundle file selected by the user
No database, provider login, cloud login, hosted Enigma account, or external account for the local setup path
npm install -g enigma-memory
ENIGMA_BUNDLE_FILE="<private-bundle-file>"
enigma next --plain --bundle "$ENIGMA_BUNDLE_FILE"
enigma quickstart --bundle "$ENIGMA_BUNDLE_FILE"
enigma doctor --bundle "$ENIGMA_BUNDLE_FILE"
enigma drive health --bundle "$ENIGMA_BUNDLE_FILE"
enigma claude-mcpb package --plain
enigma status --bundle "$ENIGMA_BUNDLE_FILE"enigma next --plain is the simplest first command: it prints one human-readable next step without requiring an existing bundle. enigma quickstart creates the local bundle; Claude Desktop uses the .mcpb extension package handoff by default, while other connector writes stay behind explicit enigma connect <client> --dry-run preview and a separate intentional connect command. enigma status includes first_run_status: one public-safe setup state, one primary action, and lanes for Memory Drive, Import Sandbox, memory inventory, proof activity, and diagnostics.
If doctor is red on a fresh install, read setup_status.state: setup_needed means run the included setup_status.next_command; attention_needed means a real local install/config issue remains.
For support, use enigma support summary --bundle "$ENIGMA_BUNDLE_FILE" and share only that redacted JSON unless support explicitly asks for a private local artifact.
Optional instant-value import preview:
enigma import text --file ./memories.md --complete --plainThis prints a public-safe preview/receipt only, including duplicate groups/counts. Raw notes stay local and nothing is written to the vault unless an explicit import path is approved; approved --write-vault imports return a sanitized batch receipt with write refs and receipt hashes. To undo a local import, keep the private raw report written with --out and run enigma import rollback --file <raw-report.json> --bundle <bundle.json>.
Connect Claude first with the extension package, or preview another client before writing:
enigma claude-mcpb package --plain
enigma connect cursor --dry-run
enigma connect kimi-code --dry-runFor non-Claude clients, remove --dry-run once the preview looks correct. Claude's .mcpb handoff does not write Claude settings from Enigma.
MCP server
Run the Enigma MCP server over stdio:
ENIGMA_BUNDLE="$ENIGMA_BUNDLE_FILE" enigma-mcpOr through the CLI:
ENIGMA_BUNDLE="$ENIGMA_BUNDLE_FILE" enigma mcp serveGeneric MCP client entry:
{
"mcpServers": {
"enigma": {
"command": "enigma-mcp",
"args": [],
"env": {
"ENIGMA_BUNDLE": "<private-bundle-file>"
}
}
}
}Use --mcp-command (alias --command) when a GUI app cannot find shell-installed binaries or needs a .cmd path on Windows.
The default stdio profile is core: eleven memory/setup tools with flat primitive schemas, including enigma_visual_context. Advanced Memory Controller and settlement tools are available through ENIGMA_MCP_TOOL_PROFILE=full enigma-mcp or enigma mcp serve --profile full. In the full profile, enigma_memory_weather, enigma_consent_grant, enigma_recall_veto, and enigma_private_bubble provide public-safe Memory Weather, app permissions, recall approval / not-shared decisions, and private memory bubbles. These tools fail closed and return decision artifacts and refs only, not raw memory.
For grant-gated local context, create an opaque consent grant and require it before context is returned:
enigma controller grant --app-ref ref:app:cli --purpose-ref ref:purpose:cli_context --memory-zone-ref ref:zone:default --out grant.json
enigma context --bundle "$ENIGMA_BUNDLE_FILE" --query "project context" --require-grant --grant-file grant.json --proof
enigma controller revoke --grant-file grant.json --out grant.revoked.json
enigma context --bundle "$ENIGMA_BUNDLE_FILE" --query "project context" --require-grant --grant-file grant.revoked.json --proofThe first context call can return proof-gated context. The final context call fails closed because the revoked grant artifact is supplied. If the grant is missing, expired, revoked, or scoped to the wrong app/purpose/zone, Enigma returns enigma.context_pack_recall_blocked.v1 with context_pack_returned:false. MCP clients can pass revoked_grant_refs so stale active grants fail closed locally.
Visual context carriers
For vision-capable clients, Enigma can render a selected context pack into deterministic local PNG pages:
enigma context --bundle "$ENIGMA_BUNDLE_FILE" --query "project context" --carrier image --out-dir ./.enigma/visual-contextThe same surface is available to MCP clients as enigma_visual_context. Its model-facing input schema is flat and primitive; successful calls return one plaintext-free manifest block followed by image/png content blocks.
Visual carriers are derived transport artifacts inspired by published dense-text bitmap context experiments. They are not encryption: a person or vision model may read the memory text in the pixels. The local vault remains canonical. Keep image pages out of public proof packets, chain data, relay logs, and support attachments. Recall quality, silent image downscaling, input billing, and output/reasoning cost vary by model and require an exact-model benchmark; Enigma makes no universal lossless-recall or token-savings claim.
Audit model-facing MCP schema complexity separately:
enigma mcp audit --plain
enigma mcp audit --profile full --plainThe default core audit must report only flat primitive schemas; --profile full exposes advanced nesting debt explicitly instead of charging every ordinary client for those schemas. This operationalizes the thin-schema principle described in The Minutiae of Tool-calling: prefer flat primitive arguments, resolve opaque refs inside the harness, reject unknown fields, and measure no-call/malformed-call behavior. It is a risk report, not a reliability guarantee; provider-specific raw tool-dialect repair remains the client harness's responsibility.
Connect clients
Supported connector profiles are:
claude-desktopcursorkimi-codevscode-clinerooopencodegeneric-mcp
Claude Desktop should use the extension package first:
enigma claude-mcpb package --plainFor Cursor, Kimi Code, and advanced compatible clients, preview one client before writing:
enigma connect cursor --dry-run
enigma connect kimi-code --dry-run
enigma connect generic-mcp --dry-runBrowser extension and native host
The browser extension is an unpacked Manifest V3 scaffold in:
apps/browser-extensionThe local native messaging host install assets are in:
apps/native-hostRegister host name com.enigma.native_host by generating a browser-specific manifest:
enigma native-host manifest --browser chrome --host-path "<native-host-executable>" --extension-id "<extension-id>" --out ./com.enigma.native_host.jsonUse --browser edge or --browser firefox for those browsers. Find unpacked Chrome IDs at chrome://extensions > Developer mode > Enigma > Details, Edge IDs at edge://extensions > Developer mode > Enigma > Details, and Firefox IDs at about:debugging#/runtime/this-firefox or from a stable browser_specific_settings.gecko.id/signed add-on ID. The host path must point to enigma-native-host or a wrapper that sets ENIGMA_BUNDLE before launching it.
The native host is inside the local trust boundary: protect the manifest, wrapper, executable, and ENIGMA_BUNDLE path from local modification. The extension does not use browser sync storage (chrome.storage.sync) at all and requires an explicit user click before inserting Enigma context into a supported provider page. Provider-native memory remains cache only; Enigma receipts do not prove provider deletion or model forgetting.
Source checkout
Use a source checkout only when you need source-only docs, Docker assets, browser-extension scaffolding, package development, or release scripts:
git clone https://github.com/Enigma-Memory/enigma-memory.git
cd enigma-memory
npm run install:local -- --execute --init-vault --bundle "$ENIGMA_BUNDLE_FILE"
enigma doctor --bundle "$ENIGMA_BUNDLE_FILE"install:local is dry-run unless --execute is present. The command above installs the checked-out package globally and creates a local Memory Drive bundle.
Export and verify proof artifacts
enigma export --bundle "$ENIGMA_BUNDLE_FILE" --out ./enigma-export.json
enigma verify --export ./enigma-export.jsonExported proof artifacts contain encrypted/committed Memory Drive state and receipt metadata; do not paste raw memory plaintext into relay records, witness checkpoints, SIEM events, public proof artifacts, or shell command lines.
Claim boundary
Enigma can honestly claim:
A local Enigma Memory Drive contains or no longer serves a committed memory address.
A memory create, retrieval, context-pack, update, or tombstone event produced a receipt that verifies offline.
A boundary harness classified an observed boundary event as committed, blocked, out-of-scope, or failed.
A relay stored an opaque encrypted record or signed a witness checkpoint without raw memory plaintext.
A gateway decision followed a specific Enigma enterprise policy at a specific policy hash.
Enigma cannot honestly claim:
Facts about a closed provider's internal copies.
Changes to model training, fine-tuning, cache, telemetry, or hidden personalization state.
Semantic changes across model outputs, hidden personalization, embeddings, summaries, caches, or third-party systems outside Enigma state.
Completeness of imported provider memories unless the source export explicitly proves completeness.
A signed memory statement is true in the real world; receipts prove custody and lifecycle, not factual correctness.
Token ROI, profit, equity, revenue share, investment return, or token price expectation.
Tamper-proof hardware or raw compute superiority.
Benchmark leadership without measured repository evidence.
Hosted cloud or customer BYOC deployment is live without cloud account credentials, domain/TLS, production durable storage, KMS, monitoring, backups, incident ownership, and SIEM/log routing.
That a local review packet or local provenance/SBOM output is signed provenance, registry attestation, source-control evidence, SLSA level, compliance certification, Docker image digest/runtime evidence, npm publication, hosted/BYOC readiness, or hosted/cloud deployment proof.
Documentation
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Shared long-term memory vault for AI agents with 20 MCP tools.
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
Your versioned memory across every AI tool — context maps, personal memory, and tasks over MCP.
Person-owned AI memory that learns, not just stores — portable context for any MCP client.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceProvides persistent, local-first AI memory across sessions via MCP tools for storing, searching, and retrieving context from past interactions.1MIT
- FlicenseAqualityCmaintenanceLocal explicit memory vault exposing MCP tools for storing, searching, and managing memories, providing a shared memory layer for agents like Codex and ChatGPT.7-
- AlicenseNot gradedqualityAmaintenanceProvides a local context-memory layer for AI assistants, enabling retrieval-augmented queries, explanations, feedback, and status checks via MCP tools.1Apache 2.0
- AlicenseNot gradedqualityBmaintenanceCross-vendor AI memory over MCP. Provides a persistent memory store with tools to write, search, list, forget, and supersede memories from any MCP-capable AI client.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Enigma-Memory/enigma-memory'
If you have feedback or need assistance with the MCP directory API, please join our Discord server