Skip to main content
Glama
moorcheh-ai
by moorcheh-ai

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MEMANTO_MCP_HOSTNoBind host for sse/http transports.127.0.0.1
MEMANTO_MCP_PORTNoBind port for sse/http transports.8765
MOORCHEH_API_KEYYesMoorcheh API key.
MEMANTO_EXPOSE_ADMINNoRegister admin tools.false
MEMANTO_AGENT_PATTERNNoPattern used when auto-creating default agent.tool
MEMANTO_MCP_LOG_LEVELNoLog level.INFO
MEMANTO_MCP_TRANSPORTNoTransport type.stdio
MEMANTO_DEFAULT_AGENT_IDNoDefault agent ID. Recommended.
MEMANTO_AGENT_AUTO_CREATENoCreate default agent on first use if missing.true
MEMANTO_SESSION_DURATION_HOURSNoSession lifetime in hours.6

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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 remember.

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 recall when you need a synthesized answer rather than a ranked list. Returns the answer text plus the supporting memory sources.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

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