@everme/memory-mcp
v0.3.1
Published
EverMe memory plugin — generic MCP server for any MCP host (Cursor, Cline, generic JSON-RPC clients). Hosts with native plugin formats (Claude Code, OpenClaw) have their own packages.
Maintainers
Readme
@everme/memory-mcp
Generic MCP server for the EverMe memory backend. Use this from any MCP-speaking host that doesn't have a native EverMe package — e.g. Cursor, Cline, generic JSON-RPC clients.
If you're on:
- Claude Code → use
@everme/claude-code(native plugin: hooks + commands + skills + this MCP server) - OpenClaw → use
@everme/openclaw(ContextEngine plugin) - Anything else MCP → use this package
Tools exposed
mem_search hybrid memory search (text + vector)
mem_context server-rendered context block (profile + episodes)
mem_save_turn realtime write to /mem/agent-memory (no records)Wire it into a host's mcpServers config
{
"mcpServers": {
"everme-memory": {
"command": "npx",
"args": ["-y", "@everme/memory-mcp"],
"env": {
"EVERME_API_BASE": "https://api.everme.evermind.ai",
"EVERME_AGENT_ID": "agt_...",
"EVERME_AGENT_TOKEN": "evt_..."
}
}
}
}evercli plugin install <host> writes this for hosts without a native plugin package.
Architecture
Thin adapter on top of @everme/agent-sdk. This package owns the MCP framing (stdio + JSON-RPC), tool list, and dispatch. Everything else — HTTP client, realtime agent-memory writes, search/context calls, retry, redaction — comes from the SDK.
Tests
npm testLicense
Apache-2.0
