Yandex Wiki MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HOST | No | Host address | 127.0.0.1 |
| PORT | No | Port number | 8088 |
| MCP_PATH | No | MCP path | /mcp |
| READONLY | No | Enable read-only mode | false |
| REDIS_DB | No | Redis database number | 0 |
| TRANSPORT | No | Transport type (stdio by default) | stdio |
| REDIS_PORT | No | Redis port | 6379 |
| WIKI_TOKEN | No | OAuth token for Yandex Wiki | |
| WIKI_ORG_ID | No | Organization ID for Yandex Wiki | |
| TRACKER_TOKEN | No | Tracker token (alternative to WIKI_TOKEN) | |
| REDIS_ENDPOINT | No | Redis endpoint | localhost |
| REDIS_PASSWORD | No | Redis password | |
| TRACKER_ORG_ID | No | Tracker organization ID (alternative to WIKI_ORG_ID) | |
| WIKI_API_BASE_URL | No | Base URL for Yandex Wiki API | https://api.wiki.yandex.net/v1 |
| REDIS_POOL_MAX_SIZE | No | Redis pool max size | 10 |
| TOOLS_CACHE_ENABLED | No | Enable tools caching | false |
| TOOLS_CACHE_REDIS_TTL | No | Redis cache TTL in seconds | 3600 |
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
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| wiki_page_get_by_urlB | Read-only: получить страницу по полной ссылке вида https://wiki.yandex.ru/<path...>/ |
| wiki_page_getA | Read-only: получить страницу по slug (путь без домена). |
| wiki_page_get_text_by_urlA | Read-only: вернуть только content страницы по полной ссылке. |
| wiki_page_resolve_idA | Read-only: получить page_id страницы по slug или полной ссылке. Используйте перед wiki_page_update / wiki_page_append_content, если известен только slug или URL. |
| wiki_page_createB | Write: создать новую страницу. |
| wiki_page_updateB | Write: обновить существующую страницу по ID (заголовок и/или контент). |
| wiki_page_append_contentA | Write: добавить контент в начало/конец страницы или по якорю (#anchor). |
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 7 tools
Each tool has a clearly distinct purpose: read operations differentiate between full URL, slug, content-only, and ID resolution; write operations cover create, update, and append. No overlap or ambiguity.
All tool names follow a consistent 'wiki_page_<verb>' pattern in snake_case. Verbs are descriptive (get, get_text, resolve_id, create, update, append_content) with no mixing of conventions.
7 tools is well-scoped for a wiki server, covering essential read and write operations without being excessive or insufficient.
The tool set covers create, read (multiple variants), update, and append, but lacks a delete operation. This is a minor gap, as deletion is often needed in wiki management.