weighted-compact
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 |
|---|---|
| search_pairsA | Cosine-search the substrate's correction-text embeddings. |
| compact_sessionA | Assemble a compacted-markdown view of the source pair's session. |
| substrate_infoA | Report what's built and what isn't — cheap diagnostic. |
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 3 tools
Each tool has a clearly distinct purpose: compact_session compacts a source pair's session, search_pairs performs cosine search on embeddings, and substrate_info provides diagnostic info. No overlap in functionality.
All tool names follow a consistent verb_noun pattern in snake_case: compact_session, search_pairs, substrate_info. Predictable and easy to understand.
With only 3 tools, the server feels minimal but well-scoped for its niche purpose. The tools cover the core actions (compact, search, info) and the count is reasonable given the specialized domain.
The tools cover the main operations for consuming compacted sessions, but lack tools to create or manage the underlying substrate (e.g., bootstrap, rem-pass mentioned as dependencies). This creates a notable gap for autonomous operation.