uctx
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
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
| 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 |
|---|---|
| save_contextA | Save a durable fact, preference, or note about the user so any agent can recall it later. Use this whenever the user states something worth remembering across sessions and tools (e.g. "I prefer Python", "I'm based in Boston", "my project is a job-hunting agent"). Args: content: The thing to remember, in a self-contained sentence. type: One of "preference", "fact", or "note". tags: Optional short keywords to aid later search (e.g. ["coding", "style"]). source_app: The app/agent saving this (e.g. "claude-desktop", "cursor"). |
| search_contextA | Search the user's saved context by keyword. Call this BEFORE answering questions about the user's preferences, background, or history, so your answer reflects what they've told other agents — not just this conversation. |
| list_contextA | List the user's saved context items, most recent first. |
| forget_contextA | Delete one saved context item by its id (from list_context/search_context). |
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 4 tools
Each tool performs a clearly distinct operation: save adds new context, search and list retrieve it (with different scopes), and forget deletes by id. There is no overlap that would confuse an agent.
All tool names follow the same verb_noun pattern (save_context, search_context, list_context, forget_context) using snake_case. The naming is completely predictable and consistent.
With only four tools, the server is well-scoped for its purpose of managing user context. Each tool is essential and there is no unnecessary bloat or missing core operation for the stated domain.
The server covers create, read (both search and list), and delete operations. The only minor gap is lack of an explicit update operation, but this can be worked around via delete+save, so it is not a significant dead end.