Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

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
storeA

Store a memory.

Args:
    content: The memory content to store.
    tags: Comma-separated tags (e.g. "preference,ui,dark-mode").
    context: When/where this memory applies.
    importance: 1-10, how important this memory is.
    namespace: Namespace for organizing memories.
correctA

Store a correction. Always maximum importance. Always surfaces first.

Use this when the AI made a mistake and you want to prevent it from
happening again. Corrections override normal memories.

Args:
    content: What the correct behavior/answer should be.
    context: When/where this correction applies.
    tags: Comma-separated tags.
    namespace: Namespace for organizing memories.
recallB

Search memories by relevance. Corrections surface first.

Args:
    query: What to search for.
    limit: Max results to return.
    namespace: Filter by namespace.
checkA

Pre-flight check: see if any corrections apply before taking an action.

Call this before doing something to see if there's a stored correction
that should change your approach.

Args:
    planned_action: Describe what you're about to do.
    namespace: Filter by namespace.
helpedA

Mark whether a surfaced memory actually helped.

This feedback loop is what makes NeverOnce learn.
Helpful memories get stronger. Unhelpful ones decay.

Args:
    memory_id: The memory ID (from recall results).
    did_help: True if the memory was useful, False if not.
forgetA

Delete a memory by ID.

Args:
    memory_id: The memory to delete.
statsC

Get memory store statistics.

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/WeberG619/neveronce'

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