Skip to main content
Version: v0.9.0a2
Integrator

MCP integrations

Stigmem ships @eidetic-labs/stigmem-mcp, a stdio MCP server that installs the stigmem-mcp binary and lets MCP-aware editors read from and write to a Stigmem node. The adapter exposes six tools: assert_fact, query_facts, recall, resolve_contradiction, subscribe_scope, and lint_scope.

Installโ€‹

npm install -g @eidetic-labs/stigmem-mcp
# or run without a global install:
npx -y @eidetic-labs/stigmem-mcp@0.1.0

Quick startโ€‹

stigmem mcp doctor
stigmem mcp detect
stigmem mcp config codex-cli
stigmem mcp install codex-cli
stigmem mcp install codex-cli --write
stigmem mcp smoke codex-cli

stigmem mcp install defaults to a dry run. Passing --write creates a timestamped backup before changing an existing editor config. stigmem mcp config prints metadata and the connector guide link only; use the install dry run to preview the planned Stigmem server entry with the credential field omitted from console output.

Supported editorsโ€‹

EditorValidation tierGuide
Codex CLIValidatedCodex CLI
Claude CodeValidatedClaude Code
Gemini CLICaveatedGemini CLI
Continue.devExperimentalContinue.dev
CursorExperimentalCursor
ZedExperimentalZed

Validation tiers:

  • Validated: host UI smoke evidence is on file.
  • Caveated: tool execution passed with a documented host-side caveat.
  • Experimental: connector guide exists; host UI smoke evidence is pending.

Trust modelโ€‹

The MCP adapter is an editor-launched subprocess. The editor authorizes process launch, then STIGMEM_URL and STIGMEM_API_KEY determine what the subprocess can read and write on the node. Treat the subprocess like any other local tool that can call the node API with that key.

Use one key per operator or trust boundary. Do not reuse the same MCP config across mutually untrusted workspaces.

Troubleshootingโ€‹

SymptomCheck
stigmem-mcp not foundRun npm install -g @eidetic-labs/stigmem-mcp or use the npx snippet in your editor config
Auth errorsConfirm STIGMEM_API_KEY matches a valid node key
Connection refusedConfirm the node is reachable at STIGMEM_URL
Tools missing in the editorRun stigmem mcp status and restart the editor after config changes

See also: MCP adapter security.