agentmemo-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| AGENTMEMO_API_KEY | Yes | Your AgentMemo API key from agentmemo.net |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| rememberA | Store a memory for later recall. Use this to persist information across sessions. |
| recallB | Search stored memories by query. Returns the most relevant memories. |
| forgetB | Delete a stored memory by ID. |
| list_memoriesC | List recent memories in a namespace. |
| request_approvalA | Ask a human to approve or reject an action. Returns an approval ID to poll. |
| check_approvalB | Check the status of a human approval request. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose with no overlap: check_approval and request_approval handle approval workflows, while forget, list_memories, recall, and remember manage memory operations. The descriptions make it easy to differentiate between approval and memory tools, and within each category, the actions are well-defined (e.g., recall vs. remember).
All tool names follow a consistent verb_noun pattern (e.g., check_approval, list_memories, request_approval) with no deviations in style or casing. This uniformity makes the tool set predictable and easy for an agent to navigate, enhancing usability.
With 6 tools, the server is well-scoped for its memory and approval management domain. Each tool serves a specific, necessary function without redundancy, making the count appropriate and efficient for handling core workflows like storing, retrieving, and managing memories, along with human-in-the-loop approvals.
The tool set provides complete coverage for the memory and approval domain: it includes create (remember), read (recall, list_memories), delete (forget), and approval lifecycle (request_approval, check_approval). There are no obvious gaps, ensuring agents can perform all essential operations without dead ends.