Memanto MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MEMANTO_MCP_HOST | No | Bind host for sse/http transports. | 127.0.0.1 |
| MEMANTO_MCP_PORT | No | Bind port for sse/http transports. | 8765 |
| MOORCHEH_API_KEY | Yes | Moorcheh API key. | |
| MEMANTO_EXPOSE_ADMIN | No | Register admin tools. | false |
| MEMANTO_AGENT_PATTERN | No | Pattern used when auto-creating default agent. | tool |
| MEMANTO_MCP_LOG_LEVEL | No | Log level. | INFO |
| MEMANTO_MCP_TRANSPORT | No | Transport type. | stdio |
| MEMANTO_DEFAULT_AGENT_ID | No | Default agent ID. Recommended. | |
| MEMANTO_AGENT_AUTO_CREATE | No | Create default agent on first use if missing. | true |
| MEMANTO_SESSION_DURATION_HOURS | No | Session lifetime in hours. | 6 |
Capabilities
Features and capabilities supported by this server
| 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 |
|---|---|
| rememberA | Store a single piece of information in the agent's long-term memory. Use this whenever the user shares a stable fact, preference, decision, goal, or instruction you should recall in a future conversation. Memory is typed (13 categories) and carries confidence + provenance so later retrievals can rank and filter intelligently. Content is capped at 10000 chars - store atomic, self-contained statements. |
| batch_rememberA | Store many memories at once (up to 100). Use this when you have a list of independent facts to persist - e.g. extracting structured data from a document. For a single item, prefer |
| recallA | Search the agent's memories by semantic similarity. Returns the top-N most relevant items. Use this FIRST before asking the user to repeat information - the agent may already remember it. The query should be natural language ('what does the user prefer for code style?'), not keywords. |
| recall_recentA | Return the most recently stored memories (newest first). Use this to surface fresh context - e.g. 'what did we just decide?' - when you don't have a specific search query. |
| recall_as_ofA | Point-in-time recall: return only memories that were known before the given timestamp. Use this when the user asks historical questions like 'what did we know on 2025-11-01?' or to reconstruct context at a previous moment. |
| recall_changed_sinceA | Differential retrieval: return memories created or updated after the given timestamp. Use this for 'what's new since X?' or to catch up on activity between sessions. |
| answerA | Ask a natural-language question and get an LLM-generated answer grounded ONLY in the agent's stored memories (RAG). Prefer this over |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/moorcheh-ai/memanto'
If you have feedback or need assistance with the MCP directory API, please join our Discord server