Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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

CapabilityDetails
tools
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
memory_agent_manifestA

Machine-readable install and operating instructions for AI agents. Call first when onboarding. Supports privacy_mode documentation for read tools.

memory_connection_statusA

Local SQLite path readiness and size without reading entry values. Safe first call every session.

memory_data_inventoryA

Static inventory of memory domains, privacy modes and recommended first calls. No live value reads.

memory_capabilitiesA

Self-description of this MCP including privacy modes and mutation gating.

memory_getA

Exact key lookup. Returns the stored value plus timestamps, ttl, tags, metadata. Returns null if missing or expired. Optional privacy_mode=summary omits full values.

memory_listA

List keys with optional prefix or tag filter. Returns keys + timestamps + tags only — call memory_get for values. Use this first on a new session to discover what is stored. Optional privacy_mode for agent-surface parity (list is already key-only).

memory_searchA

Full-text search across keys, values AND tags. Uses an FTS5 index with bm25 relevance ranking (key-weighted), word-stemming, diacritic folding and prefix matching — so multi-word, partial and accent-insensitive queries all hit, ranked by relevance. Falls back to a LIKE substring scan if the SQLite build lacks FTS5. Returns top N matches with a snippet. Case-insensitive. privacy_mode=summary omits snippets.

memory_statsA

High-level stats about the local memory store. Safe to call first on every session to gauge whether the store is empty, small, or large.

memory_setA

Create or update a key in memory. Rejects credential-shaped keys or values. Requires explicit_user_intent: true. Returns whether the row was created or updated.

memory_forgetA

Delete a single key from memory. Idempotent: returns existed=false if the key was not present. Requires explicit_user_intent: true.

memory_forget_by_tagA

Delete every entry carrying the given tag. Returns deleted_count. Requires explicit_user_intent: true.

memory_exportA

Dump the memory store as JSON, JSONL, or Markdown. Optional since/until window on updated_at. Use for backup/inspection. Requires explicit_user_intent: true.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription
memory_data_inventoryStatic inventory of memory domains and recommended first calls.
memory_agent_manifestMachine-readable install and operating instructions for AI agents.
memory_capabilitiesSelf-description of the delx-memory MCP surface.
memory_connection_statusLocal SQLite path readiness and size (no entry values).

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/davidmosiah/delx-memory'

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