@remind_ai/remind-mcp
v0.1.1
Published
MCP server exposing REMind brain-inspired agent memory (with the MemGuard security layer) as Model Context Protocol tools.
Maintainers
Readme
@remind_ai/remind-mcp
An MCP server that gives any AI client REMind's brain-inspired memory — with the MemGuard security layer — as ready-to-call tools.
Tools
| Tool | Description |
|------|-------------|
| remember(agentId, user, assistant) | Store an exchange in long-term memory (firewalled). |
| recall(agentId, query) | Retrieve a fused memory context for a query. |
| consolidate(agentId) | Run the sleep cycle — episodes → durable beliefs. |
| forget(agentId) | Decay stale memories. |
Use it (Claude Desktop / VS Code / Cursor)
Add to your MCP config (e.g. claude_desktop_config.json or .vscode/mcp.json):
{
"mcpServers": {
"remind": {
"command": "npx",
"args": ["-y", "@remind_ai/remind-mcp"],
"env": {
"AZURE_OPENAI_ENDPOINT": "https://<resource>.openai.azure.com/",
"AZURE_OPENAI_API_KEY": "...",
"AZURE_OPENAI_CHAT_DEPLOYMENT": "...",
"AZURE_OPENAI_EMBED_DEPLOYMENT": "...",
"AZURE_SEARCH_ENDPOINT": "https://<service>.search.windows.net",
"AZURE_SEARCH_API_KEY": "...",
"COSMOS_GREMLIN_ENDPOINT": "wss://<account>.gremlin.cosmos.azure.com:443/",
"COSMOS_GREMLIN_KEY": "...",
"COSMOS_MONGO_URI": "mongodb+srv://<user>:<password>@<cluster>/",
"SYNC": "1"
}
}
}
}The agent can now call remember / recall / consolidate / forget on its own.
Local development
npm install
cp .env.example .env # fill in Azure creds
npm start # runs the server on stdioPublish
npm publish --access publicBuilt on the published @remind_ai/remind SDK —
one brain, many doorways.
