Skip to main content
Version: v0.9.0a2
Integrator

Connectors

2 min readIntegratorAdapter index

What this section covers

Install recipes and smoke tests for running the Stigmem MCP server inside popular editors, agent CLIs, and non-MCP runtimes.

MCP host connectorsโ€‹

These guides configure the existing MCP server (stigmem/adapters/mcp/) as a tool provider inside each host. Build the server once, then register it in each host's config. For the independently versioned @eidetic-labs/stigmem-mcp@0.1.0 package, Codex CLI and Claude Code are the validated host UI targets for publication clearance. Gemini CLI has host smoke evidence with a final-response caveat. Continue.dev, Cursor, and Zed remain experimental connector guides until host-specific smoke evidence is recorded. The canonical feature record is features/mcp-adapter.

Host
Config location
Guide
Zed (experimental, unvalidated)
mcp_servers in settings.json
features/mcp-adapter
Cursor (experimental, unvalidated)
.cursor/mcp.json
features/mcp-adapter
Codex CLI (validated smoke)
~/.codex/config.toml
features/mcp-adapter
Claude Code (validated smoke)
.mcp.json or --mcp-config
features/mcp-adapter
Gemini CLI (smoke caveat)
gemini mcp add project config
features/mcp-adapter
Continue.dev (experimental, unvalidated)
.continue/config.json
Continue VS Code/JetBrains extension.

Runtime adaptersโ€‹

These adapters translate Stigmem's tools into the native function-calling format of non-MCP runtimes.

Runtime
Format
Guide
Gemini
native FunctionDeclaration
features/gemini-adapter
Ollama / LiteLLM
OpenAI-compatible tool-use
For local models. features/ollama-litellm-adapter
OpenAI tools
OpenAI-compatible tool-use
features/openai-tools-adapter

Agent platform adaptersโ€‹

Platform
Integration
Guide
OpenClaw
ClawHub skill
Boot handshake, handoff, decision, and escalation surfaces. OpenClaw guide.
Paperclip / Claude Code
MCP server in .mcp.json
features/paperclip-adapter

Vault / note-taking adaptersโ€‹

Tool
Sync mode
Guide
Obsidian / Logseq / Dendron
CLI/daemon
features/obsidian-adapter

Memory federation adaptersโ€‹

System
Bridge
Guide
Zep
episodic memory mirror
Mirror shared facts into per-user/session episodic memory. features/zep-adapter

Shared prerequisitesโ€‹

All host connectors require a built MCP server binary:

cd stigmem/adapters/mcp
pnpm install
pnpm build
# binary: dist/server.js

And a running Stigmem node:

cd stigmem/node
uv run uvicorn stigmem_node.main:app --port 8765

Set STIGMEM_API_KEY if your node has STIGMEM_AUTH_REQUIRED=true.