Skip to main content
Glama
NORTHTEKDevs

GENOME MCP Server

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
GENOME_MCP_DBNoOverride the default database path (~/.genome/memories.db) for persistent memory storage.

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": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
rememberA

Store a fact or note in long-term memory.

Fully local -- embeds the text with a local model and writes it to a local
SQLite file. No LLM call, no network. Use this whenever the user tells you
something worth remembering across sessions (preferences, facts, decisions).

Args:
    content: The text to remember (a fact, preference, or note).
    user_id: Namespace to store under (default "default"). Use per-end-user.
recallA

Search long-term memory for information relevant to a query.

Read-only, fully local semantic search. Call this before answering when the
user refers to past context, preferences, or previously-shared facts.

Args:
    query: What to look for (a question or topic).
    limit: Max memories to return (1-50, default 5).
    user_id: Namespace to search (default "default").
forgetA

Delete the single memory most relevant to query.

Destructive. Finds the best-matching memory and removes it. If nothing
matches, nothing is deleted.

Args:
    query: Describes the memory to remove.
    user_id: Namespace to delete from (default "default").
reset_memoriesA

Delete ALL memories for a user. Destructive and irreversible.

Args:
    user_id: Namespace to clear (default "default"). This never clears other
        users' namespaces.

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/NORTHTEKDevs/genome'

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