Skip to main content
Glama

MCP RAG

by santis84

add_memory

Store content in an agent's memory system for future retrieval, using categories, importance levels, and tags to organize information.

Instructions

Add information to the agent memory system

Input Schema

NameRequiredDescriptionDefault
agentIdYesID of the agent storing the memory
categoryNoCategory for the memory entry (default: general)general
contentYesContent to store in memory
importanceNoImportance level 1-10 (default: 1)
sessionIdYesID of the current session
tagsNoTags for the memory entry

Input Schema (JSON Schema)

{ "properties": { "agentId": { "description": "ID of the agent storing the memory", "type": "string" }, "category": { "default": "general", "description": "Category for the memory entry (default: general)", "type": "string" }, "content": { "description": "Content to store in memory", "type": "string" }, "importance": { "default": 1, "description": "Importance level 1-10 (default: 1)", "type": "number" }, "sessionId": { "description": "ID of the current session", "type": "string" }, "tags": { "default": [], "description": "Tags for the memory entry", "items": { "type": "string" }, "type": "array" } }, "required": [ "content", "agentId", "sessionId" ], "type": "object" }

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/santis84/mcp-rag'

If you have feedback or need assistance with the MCP directory API, please join our Discord server