uctx
Related Servers
Alternatives to uctx
No user-submitted related servers found.
Related Servers
- AlicenseNot gradedqualityBmaintenanceA local-first MCP memory server providing persistent, searchable memory for AI agents, powered by SQLite.1 npm1Apache 2.0
- AlicenseNot gradedqualityBmaintenanceA local-first MCP server providing persistent, layered memory (episodic, semantic, procedural, resource) for AI agents, with search, versioning, and session management via a single SQLite file.54 npm3MIT
- AlicenseNot gradedqualityAmaintenanceA local memory server for AI agents that stores and retrieves information via MCP, keeping all data in SQLite on your machine.288 PyPI1Apache 2.0
- AlicenseAqualityFmaintenanceLocal-first MCP memory server that gives AI coding agents long-term memory via SQLite and sqlite-vec, with optional LLM-powered layering. No gateway or API key required.7126 npm4MIT
- AlicenseNot gradedqualityCmaintenanceA zero-dependency MCP server that enables multiple AI agents to share key-value data, append-only timeline notes, and semantic vector memory across sessions and processes.1MIT
- AlicenseAqualityCmaintenancePersistent memory MCP server for AI agents, using SQLite with hybrid keyword and semantic search for long-term memory storage.5Do What The F*ck You Want To Public
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.