roampal-core
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| ROAMPAL_INSPECT_ONLY | No | Set to 1 to skip backend startup for inspection |
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
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_memoryB | Search across memory collections for relevant context |
| add_to_memory_bankA | Store permanent facts about the user |
| update_memoryC | Update an existing memory |
| delete_memoryC | Delete a memory by ID |
| score_memoriesD | Score previous exchange outcomes |
| record_responseA | Store key takeaways from significant exchanges. NOT for permanent preferences or standing rules — use add_to_memory_bank for those. |
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 6 tools
Each tool targets a distinct operation: permanent facts, exchange takeaways, scoring, search, update, and delete. Descriptions clearly differentiate purposes, leaving no ambiguity for an agent.
All tool names follow a consistent verb_noun or verb_preposition_noun pattern in snake_case, ensuring predictability and clarity.
With 6 tools covering the core operations of a memory system, the count is well-scoped—neither too few nor excessive for the domain.
The set provides complete CRUD (create via add_to_memory_bank and record_response, read via search_memory, update via update_memory, delete via delete_memory) plus an additional scoring capability, leaving no obvious gaps.