Engram MCP Server
Engram is a hosted MCP server that provides reliable memory for AI agents:
Engram MCP
Give your AI agents a memory they can trust. Engram lets your AI remember past conversations, facts, and decisions, so it feels more like a real teammate.
This repository contains configuration templates for connecting MCP clients to Engram, a hosted memory service for AI agents.
What is Engram?
Engram is a hosted MCP server that provides reliable memory for AI agents:
- Reliable memory: Agents remember conversations, facts, and decisions — and can show why results were chosen
- Easy setup: Connect via MCP in minutes. Works with Claude Code, Windsurf, Cursor, and other MCP clients
- Built-in controls: Manage retention and cleanup with simple tools — no extra plumbing required
Free during public beta • No credit card required
Quick Setup
1. Get your API key
Sign up at lumetra.io to get your API key.
2. Add to your MCP client
Claude Code:
claude mcp add-json engram '{"type":"http","url":"https://engram.lumetra.io","headers":{"X-API-Key":"<your-api-key>"}}'
Windsurf (~/.codeium/windsurf/mcp_config.json
):
{
"mcpServers": {
"engram": {
"serverUrl": "https://engram.lumetra.io",
"headers": {
"X-API-Key": "<your-api-key>"
}
}
}
}
Cursor (~/.cursor/mcp.json
or .cursor/mcp.json
):
{
"mcpServers": {
"engram": {
"url": "https://engram.lumetra.io",
"headers": {
"X-API-Key": "<your-api-key>"
}
}
}
}
3. Restart your client
Your MCP client will now have access to Engram memory tools.
Available Tools
Once connected, your agent will have access to these memory tools:
store_memory(content)
— Store a single memorystore_memories(contents[])
— Store multiple memories at oncesearch_memories(query, max_candidates?, hints?)
— Search stored memoriesmemory_index(page?, limit?)
— Browse all memoriesdelete_by_event(event_id, dry_run?)
— Delete specific memoriesexplain_retrieval(retrieval_id, verbosity?)
— Understand why results were chosen
Recommended Agent Prompt
Add this to your agent's system prompt to encourage effective memory usage:
You have Engram Memory. Use it aggressively to improve continuity and personalization.
Tools:
- store_memory(content)
- store_memories(contents[])
- search_memories(query, max_candidates?, hints?)
- memory_index(page?, limit?)
- delete_by_event(event_id, dry_run?)
- explain_retrieval(retrieval_id, verbosity?)
Policy:
- Retrieval-first: before answering anything that may rely on prior context, call search_memories (use max_candidates 20–80 for broad queries). Ground answers in results.
- Aggressive storing: capture stable preferences, profile facts, recurring tasks, decisions, and outcomes. Keep each item ≤1–2 sentences. Batch at end of turn with store_memories; use store_memory for single critical facts.
- Cleanup: when info changes, find and delete the old event (memory_index or search_memories → delete_by_event), then store the corrected fact.
Style for stored content: short, declarative, atomic facts.
Examples:
- "User prefers dark mode."
- "User timezone is US/Eastern."
- "Project Alpha deadline is 2025-10-15."
If asked how results were chosen, call explain_retrieval with the retrieval_id returned by search_memories.
Use Cases
Teams use Engram for:
- Support with prior context: Carry forward last ticket, environment, plan, and promised follow‑ups
- Code reviews with context: Store ADRs, owner notes, brittle areas, and post‑mortems as memories
- Shared metric definitions: Keep definitions, approved joins, and SQL snippets in one place
- On‑brand content, consistently: Centralize voice and approved claims for writers
About This Repository
This repository contains:
- This README with setup instructions for popular MCP clients
server.json
- MCP server manifest following the official schema
The server.json
file uses the official MCP server schema and can be used by MCP clients that support remote server discovery. For manual configuration, use the client-specific examples above.
The actual Engram service runs at https://engram.lumetra.io
— there's no local installation required.
Support
- Product site: lumetra.io
- Documentation: See setup instructions above
- Status: Free public beta (no credit card required)
Related Servers
Hasura GraphQL
Interact with a Hasura GraphQL endpoint, enabling schema introspection, queries, mutations, and data aggregation.
PostgreSQL
Provides read-only access to PostgreSQL databases, enabling schema inspection and query execution.
Milvus
Search, Query and interact with data in your Milvus Vector Database.
libSQL by xexr
MCP server for libSQL databases with comprehensive security and management tools. Supports file, local HTTP, and remote Turso databases with connection pooling, transaction support, and 6 specialized database tools.
Token Metrics
Token Metrics integration for fetching real-time crypto market data, trading signals, price predictions, and advanced analytics.
Airtable
Read and write access to Airtable databases.
CData Salesforce MCP Server
A read-only MCP server by CData that allows LLMs to query live Salesforce data. Requires the CData JDBC Driver for Salesforce.
BigQuery
Server implementation for Google BigQuery integration that enables direct BigQuery database access and querying capabilities
Kollektiv MCP
Build and access a personal LLM knowledge base from your editor or client without any infrastructure setup.
Pipedrive MCP Server by CData
A read-only MCP server for Pipedrive, enabling LLMs to query live data using the CData JDBC Driver.