ProjectContext
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_memoryA | Save a memory to the long-term storage. |
| delete_memoryA | Delete a memory by ID. |
| update_memoryA | Update a memory by ID. |
| query_memoryA | Query memories using semantic and keyword search. |
| create_agendaA | Create a new agenda (plan/todo list). |
| list_agendasC | List all agendas. |
| get_agendaA | Get detailed information about an agenda, including its tasks. |
| search_agendasA | Search agendas by title or description. |
| update_taskA | Update a task's completion status. |
| update_agendaA | Update an agenda's status, details, or add new tasks. |
| delete_agendaB | Delete an agenda and its associated tasks. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| setup_project_context | Template for initializing a new project with technical stack, goals, and conventions. Args: query: Optional user request or project description. |
| plan_feature_implementation | Guides the model to break down a feature into a structured agenda with acceptance criteria. |
| summarize_and_remember | Summarize a conversation or technical discussion and save it to memory. Args: context: The text or conversation history to summarize. |
| debug_with_history | Workflow for debugging issues using past bug fix memories and system context. Args: bug_description: Description of the current issue. |
| maintain_memory_health | Workflow for identifying and updating outdated or redundant memories. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| get_usage_guidelines | Memory Engine usage guidelines for AI agents. Provides comprehensive documentation on: - When to save memories (DO's and DON'Ts) - How to structure memories (category, topic, content) - How to query effectively - Best practices and common patterns - Search features and capabilities Returns: The complete usage guidelines as markdown text |
TDQS
Scored across 11 tools
Each tool clearly targets either the memory resource (save/delete/update/query) or the agenda resource (create/list/get/search/update/delete). Even update_task is distinct from update_agenda as it operates on a sub-resource, eliminating any real ambiguity.
All tools follow a consistent verb_noun pattern with snake_case, using clear verbs like save, delete, update, query, create, list, get, search. The pluralization of list_agendas vs get_agenda is a minor stylistic variation but consistent throughout.
11 tools is well within the ideal 3-15 range, covering two distinct domains (memory and agenda) without bloat or thinness. Each tool earns its place in the set.
Memory has full CRUD plus semantic search, and agenda has create/read/update/delete plus task management. The only noticeable gap is the lack of a list_memories tool, but query_memory serves as a search-based alternative. Task deletion is also not available, but tasks can be added and marked complete, so the core lifecycle is covered.