wiki-helper
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_API_KEY | No | Optional API key for authentication. Leave unset for initial testing. | |
| WIKI_BRANCH | No | Branch of the wiki repository to use. | main |
| MCP_HTTP_HOST | No | Host interface for the MCP HTTP server. | 0.0.0.0 |
| MCP_HTTP_PORT | No | Port for the MCP HTTP server. | 3000 |
| MCP_HTTP_ROUTE | No | HTTP route for the MCP endpoint. | /mcp |
| WIKI_LOCAL_PATH | Yes | Local directory where the wiki will be stored. | |
| WIKI_REPOSITORY_URL | Yes | Git repository URL for the wiki. | |
| WIKI_SYNC_INTERVAL_MS | No | Interval in milliseconds between automatic wiki syncs. | 1800000 |
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 |
|---|---|
| ServerA | Verifica se o servidor MCP está funcionando. |
| list_documentsB | Lista todos os documentos disponíveis na Wiki. |
| read_documentB | Lê o conteúdo de um documento da Wiki pelo caminho. |
| search_documentsC | Busca documentos da Wiki pelo nome ou caminho. |
| search_contentC | Pesquisa termos dentro do conteúdo dos documentos Markdown da Wiki. |
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 5 tools
Each tool has a clear, distinct purpose: health check, list all documents, read by path, search by name/path, and search content. No overlap or ambiguity exists among the tool operations.
Most tools follow a consistent verb_noun pattern (list_documents, read_document, search_documents, search_content). The lone exception is 'Server,' which is a single-word health check and slightly breaks the pattern, but it remains readable and predictable.
At 5 tools, the server is well-scoped for a wiki helper. Each tool covers a fundamental operation without redundancy or bloat, and the count is within the ideal 3-15 range.
The surface provides list, read, and two search capabilities, covering the primary read-only workflows for a wiki. It lacks create/update/delete operations, but these may be intentionally out of scope for a helper; minor gaps exist but are easily worked around by external tools.