MCP server for Yandex Wiki - provides access to corporate wiki pages via Model Context Protocol
Project description
Yandex Wiki MCP Server
MCP (Model Context Protocol) server for accessing Yandex Wiki pages from AI assistants like Claude.
Features
- page_get: Fetch wiki page content and metadata by slug (path)
- page_get_url: Get web URL for a wiki page
Installation
Using uvx (recommended)
uvx yandex-wiki-mcp
Using pip
pip install yandex-wiki-mcp
yandex-wiki-mcp
Configuration
Environment Variables
| Variable | Required | Description |
|---|---|---|
WIKI_TOKEN |
Yes* | Yandex OAuth token for Wiki API |
TRACKER_TOKEN |
Yes* | Fallback: Yandex OAuth token (same as Tracker) |
WIKI_ORG_ID |
Yes* | Yandex organization ID |
TRACKER_ORG_ID |
Yes* | Fallback: Yandex organization ID |
WIKI_API_BASE_URL |
No | API base URL (default: https://api.wiki.yandex.net/v1) |
WIKI_WEB_BASE_URL |
No | Web interface URL (default: https://wiki.yandex.ru) |
REQUEST_TIMEOUT |
No | Request timeout in seconds (default: 30) |
*At least one token (WIKI_TOKEN or TRACKER_TOKEN) and one org ID (WIKI_ORG_ID or TRACKER_ORG_ID) must be set.
Token Fallback
The server supports token fallback for environments where Tracker is already configured:
WIKI_TOKEN(highest priority)TRACKER_TOKEN(fallback)
Same applies for organization ID:
WIKI_ORG_ID(highest priority)TRACKER_ORG_ID(fallback)
Getting an OAuth Token
- Go to https://oauth.yandex.ru/
- Click "Create app"
- Select "For API access or debugging"
- Enter app name and contact email
- Grant necessary permissions for Wiki access
- Copy the generated token
Finding Organization ID
- Open Yandex Tracker
- Go to Admin settings -> Organizations
- Copy the ID field value
MCP Configuration
Add to your Claude MCP configuration (~/.claude/mcp.json or project's .mcp.json):
{
"mcpServers": {
"yandex-wiki": {
"type": "stdio",
"command": "uvx",
"args": ["yandex-wiki-mcp@latest"],
"env": {
"TRACKER_TOKEN": "${TRACKER_TOKEN}",
"TRACKER_ORG_ID": "your-org-id"
}
}
}
}
Usage Examples
Fetch a page
Use page_get with slug "teams/dev/onboarding"
Get page URL
Use page_get_url with slug "teams/dev/docs"
API Limitations
No Automatic Redirects
Yandex Wiki API does not follow redirects automatically. If a page has been moved and redirects to another location, the API will return a 404 error.
To handle this:
- Check the exact page path in the Yandex Wiki web interface
- Use the final destination path, not the redirect source
Permission-based Access
API requests carry the same access permissions as the authenticated user. If the user cannot access a page in the web interface, the API will also deny access.
Development
Project Structure
yandex-wiki-mcp/
├── mcp_wiki/
│ ├── __init__.py
│ ├── __main__.py
│ ├── settings.py
│ ├── mcp/
│ │ ├── __init__.py
│ │ ├── server.py
│ │ ├── context.py
│ │ └── errors.py
│ └── wiki/
│ ├── __init__.py
│ ├── client.py
│ └── proto/types/pages.py
├── pyproject.toml
└── README.md
Running locally
git clone https://github.com/sashagrande/yandex-wiki-mcp.git
cd yandex-wiki-mcp
export TRACKER_TOKEN="your-token"
export TRACKER_ORG_ID="your-org-id"
uv run yandex-wiki-mcp
Code style
The project uses:
rufffor linting and formattingmypyfor type checkingstructlogfor logging
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yandex_wiki_mcp-0.1.1.tar.gz.
File metadata
- Download URL: yandex_wiki_mcp-0.1.1.tar.gz
- Upload date:
- Size: 135.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dcbd8e0c6249714cf4b66bc11878d80dbef6936ed6add06ef47a43b1dba45030
|
|
| MD5 |
3c422de9aa8ddae8dde513cc8d31e2c1
|
|
| BLAKE2b-256 |
24f5c352a83256fdf722a1c6cb99bdb6c84da37bf9f0ef94c8b2962d80fc391b
|
File details
Details for the file yandex_wiki_mcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: yandex_wiki_mcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.19
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
28702d371ee246de64199ea395505e7fb600fd319c365b698d52b3db210706f6
|
|
| MD5 |
d70860190dcf6fc82c664bb7cffb1268
|
|
| BLAKE2b-256 |
dd236772866ee52bdc78a254683600605d3271394fd3029e265eb5b0767b222d
|