WikiStrata
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
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_wikiB | Search wiki documents by title, path, tags, and body text. |
| browse_treeC | Browse the wiki tree by node id. |
| search_in_subtreeC | Search only inside a selected tree node. |
| get_tree_pathC | Resolve the tree path for a document by path, title, or source page ID. |
| read_documentB | Read a wiki document by path, title, or source page ID. |
| related_documentsC | Return documents with overlapping wiki tags. |
| inspect_entityC | Inspect an entity from the wiki entity registry. |
| inspect_conceptC | Inspect a concept from the wiki concept registry. |
| wiki_statsA | Return document and registry counts for the current wiki. |
| reload_wikiC | Reload wiki markdown and registry files from disk. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Entity Registry | Entity registry derived from the wiki |
| Concept Registry | Concept registry derived from the wiki |
TDQS
Scored across 10 tools
Each tool targets a distinct aspect of the wiki: tree navigation, path resolution, concept/entity inspection, document reading, related documents, search (general and subtree), reloading, and statistics. No overlapping purposes.
All tool names follow a consistent verb_noun pattern in snake_case (e.g., browse_tree, inspect_concept, search_wiki). Even compound names like get_tree_path and search_in_subtree maintain the pattern.
10 tools is well-scoped for a wiki server, covering browsing, searching, reading, inspection, and admin functions without being excessive or insufficient.
The tool set covers reading, searching, and browsing, but lacks any create, update, or delete operations for documents or registry entries. This is a notable gap for a wiki system, though the server may be intended as read-only.