Memory MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OWNER_ID | Yes | A stable identifier you define yourself; good options are your GitHub username, team slug, or workspace id. | |
| DATABASE_URL | No | Only needed if you also want direct Postgres access for admin scripts or manual SQL tooling. | |
| SUPABASE_KEY | Yes | Supabase anon key from Project Settings -> API | |
| SUPABASE_URL | Yes | Supabase project URL from Project Settings -> API |
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 |
|---|---|
| resolve_projectD | Resuelve o crea un proyecto automaticamente. |
| create_projectC | Crea un proyecto con metadata de repo y workspace. |
| list_projectsC | Lista proyectos del owner o workspace actual. |
| load_unified_contextD | Carga contexto persistente optimizado. |
| save_cross_interface_decisionC | Guarda decisiones compartidas entre interfaces. |
| update_task_statusC | Crea o actualiza tareas del proyecto. |
| create_sessionC | Crea una sesion y guarda contexto git. |
| end_sessionC | Finaliza una sesion y genera resumen automatico. |
| add_warningC | Registra advertencias inteligentes. |
| get_active_warningsC | Lista advertencias activas. |
| sync_session_stateD | Sincroniza el estado de sesion. |
| get_interface_analyticsD | Resume uso por interfaz. |
| save_file_memoryC | Guarda memoria por archivo y relaciones. |
| save_checkpointC | Guarda checkpoints de arquitectura y estado. |
| save_prompt_patternC | Guarda prompts utiles y patrones de respuesta. |
| capture_project_memoryC | Guarda automaticamente decisiones, tareas, checkpoints, archivos y estado en una sola llamada. |
| search_semantic_memoryC | Busca memoria por significado o texto. |
| get_project_timelineC | Devuelve la linea de tiempo del proyecto. |
| export_memory_bundleC | Exporta memoria a JSON o Markdown. |
| import_memory_bundleC | Importa memoria desde JSON o diccionario. |
| resume_projectC | Devuelve un resumen listo para retomar el proyecto. |
| apply_retention_policyC | Aplica politicas de retencion y archivo. |
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 22 tools
Most tools are clearly distinct, but 'resolve_project' and 'create_project' have overlapping functionality (resolve auto-creates), and several save tools (capture_project_memory, save_file_memory, etc.) could be confused without reading descriptions.
All tool names follow a consistent verb_noun pattern with underscores, using clear Spanish verbs and nouns. No mixing of conventions or unclear abbreviations.
22 tools is on the high end of the acceptable range. Each tool has a defined purpose, but the count feels slightly heavy for a memory management system. Could be streamlined by merging some similar save functions.
Covers core operations: create/list/resume projects, session management, memory storage, search, import/export, and warnings. Minor gaps: no explicit delete or update tools for projects or memory items, but the existing tools cover most workflows.