Memory Engine MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| save_memoryA | Save a memory to the long-term storage. |
| delete_memoryA | Delete a memory by ID. |
| update_memoryA | Update a memory by ID. |
| verify_memoryA | Mark a memory as verified, updating its last_verified timestamp to now. |
| query_memoryA | Query memories using semantic and keyword search. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_usage_guidelines | Memory Engine usage guidelines for AI agents. Provides comprehensive documentation on: - When to save memories (DO's and DON'Ts) - How to structure memories (category, topic, content) - How to query effectively - Best practices and common patterns - Search features and capabilities Returns: The complete usage guidelines as markdown text |
TDQS
Scored across 5 tools
Each tool targets a distinct memory operation: save (create), delete, update, verify, and query (search). There is no overlap in purpose, so an agent can easily select the right tool.
All tool names follow a consistent verb_noun pattern (e.g., save_memory, delete_memory, update_memory), making the API predictable and easy to navigate.
With exactly 5 tools, the server is well-scoped for a memory management domain, covering essential operations without unnecessary complexity.
The server provides full CRUD coverage (save, query, update, delete) plus a verify operation for freshness. No critical lifecycle steps are missing for long-term memory storage.