sociableWiki
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_knowledgeA | Full-text search over the sociableWiki knowledge base (AI-native development, agent/harness engineering, dev practice). Works in English and Korean. Returns ranked matches with concept ids — call read_doc with an id for the full text. |
| read_docA | Read one knowledge doc in full by concept id (as returned by search_knowledge or list_topics). English is canonical; pass lang: 'ko' for the Korean version when available. |
| list_topicsA | Overview of everything in the wiki: the human-curated topic map when present, otherwise a generated listing grouped by area. Good first call to see what's here. |
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 clear and distinct purpose: list_topics for overview, read_doc for reading full content, and search_knowledge for full-text search. There is no overlap or ambiguity.
All tool names follow a consistent verb_noun pattern in snake_case (list_topics, read_doc, search_knowledge), making them predictable and easy to understand.
With only 3 tools, the server is concise and well-scoped for a read-only knowledge base. Each tool serves a necessary function without redundancy or gaps.
The tool set covers the core needs of a knowledge base: browsing topics, reading full documents, and searching. For its stated purpose, there are no obvious missing operations.