MCP-сервер для сервисов Яндекс 360 (Вики и далее) — инструменты для AI-ассистентов.
Project description
Yandex 360 MCP Server
MCP server that gives AI assistants (Claude Code, Claude Desktop, Cursor, VS Code and
any other MCP client) tools to work with Yandex 360
organization services — starting with Yandex Wiki. Transport is stdio, the only
runtime dependency is mcp, and it installs & runs through uvx without cloning.
🇷🇺 Документация на русском — README_ru.md.
Scope: this server covers Yandex 360 services (Wiki, and next Directory, Disk). Yandex Tracker is intentionally out of scope — it already has an excellent, mature server: aikts/yandex-tracker-mcp. Use the two side by side.
Features
- 📖 Yandex Wiki — read and edit pages (YFM), full-text search, page tree navigation, create / update / append / delete.
- 🧩 Modular by service — each Yandex 360 service is a separate module. A module registers its tools only if its tokens are set, so the model is never handed tools for services you don't use — the context stays lean.
- 🔌 Zero-friction install — one dependency, stdio transport, runs via
uvxstraight from GitHub or PyPI. - 🔐 No secrets in code or config — all tokens come from environment variables.
Modules
| Module | Status | Description |
|---|---|---|
wiki |
✅ available | Read/edit Yandex Wiki pages (YFM) |
directory |
🔜 planned | Users and org structure (Yandex 360 Directory) |
disk |
🔜 planned | Files and folders (Yandex Disk) |
MCP Client Configuration
Prerequisites
Install uv (provides uvx):
curl -LsSf https://astral.sh/uv/install.sh | sh
Get a Yandex OAuth token with wiki:read / wiki:write scopes and your Yandex 360
organization ID. Then add the server to your client using one of the blocks below.
Claude Code
Add to your project's .mcp.json (or run claude mcp add):
{
"mcpServers": {
"yandex360": {
"type": "stdio",
"command": "uvx",
"args": ["yandex360-mcp@latest"],
"env": {
"WIKI_TOKEN": "${WIKI_TOKEN}",
"WIKI_ORG_ID": "${WIKI_ORG_ID}"
}
}
}
}
To track the unreleased main branch instead, use
args: ["--from", "git+https://github.com/pa1ch/yandex360-mcp@main", "yandex360-mcp"].
Claude Desktop
One-click install: download the latest yandex360-mcp-*.mcpb from
Releases, open it in Claude Desktop,
and fill in the token fields — no JSON editing. Requires uv
installed on the machine.
Or configure manually — edit claude_desktop_config.json
(macOS: ~/Library/Application Support/Claude/, Windows: %APPDATA%\Claude\):
{
"mcpServers": {
"yandex360": {
"command": "uvx",
"args": ["yandex360-mcp@latest"],
"env": {
"WIKI_TOKEN": "your-oauth-token",
"WIKI_ORG_ID": "your-org-id"
}
}
}
}
Restart Claude Desktop after saving.
Cursor
Add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
"mcpServers": {
"yandex360": {
"command": "uvx",
"args": ["yandex360-mcp@latest"],
"env": {
"WIKI_TOKEN": "your-oauth-token",
"WIKI_ORG_ID": "your-org-id"
}
}
}
}
VS Code / GitHub Copilot
Add to .vscode/mcp.json:
{
"inputs": [
{ "id": "wiki_token", "type": "promptString", "description": "Yandex Wiki OAuth token", "password": true },
{ "id": "wiki_org_id", "type": "promptString", "description": "Yandex 360 organization ID" }
],
"servers": {
"yandex360": {
"type": "stdio",
"command": "uvx",
"args": ["yandex360-mcp@latest"],
"env": {
"WIKI_TOKEN": "${input:wiki_token}",
"WIKI_ORG_ID": "${input:wiki_org_id}"
}
}
}
}
Other MCP clients
Any stdio MCP client works. Point it at the command:
uvx yandex360-mcp@latest
with WIKI_TOKEN and WIKI_ORG_ID in the environment.
Available MCP Tools
Wiki (9 tools)
| Tool | Description |
|---|---|
wiki_whoami |
Current API user — quick access check |
wiki_get_page |
Get a page by slug (e.g. homepage, dev/deploy); optional YFM body |
wiki_get_page_by_id |
Get a page by numeric page_id; optional YFM body |
wiki_tree |
Page tree — descendants of a slug (navigation) |
wiki_search |
Full-text search across pages |
wiki_create_page |
Create a page (title, slug, YFM content) |
wiki_update_page |
Update title and/or content by id (replaces body) |
wiki_append_content |
Append YFM content to the end of a page |
wiki_delete_page |
Delete a page by id (destructive — confirm first) |
Configuration
All configuration is via environment variables — nothing sensitive lives in code or config files.
| Variable | Module | Required | Description |
|---|---|---|---|
WIKI_TOKEN |
wiki | yes* | Yandex OAuth token with wiki:read / wiki:write |
WIKI_ORG_ID |
wiki | yes* | Yandex 360 organization ID (sent as X-Org-Id) |
YANDEX360_ENABLE |
— | no | Comma-separated allow-list of modules (e.g. wiki). If unset, every configured module is enabled. |
* A module activates only when all of its variables are set. Unconfigured modules are skipped (the server logs this to stderr and keeps running).
See .env.example for a template.
Loading only the modules you need
Every registered tool takes up space in the model's context, so this server exposes only the modules you actually configure — nothing else reaches the model. At startup a module's tools are registered only when both conditions hold:
- all of the module's environment variables are set (e.g.
wikineedsWIKI_TOKENandWIKI_ORG_ID), and - the module is not excluded by
YANDEX360_ENABLE.
Two ways to control the exposed tool surface:
- By configuration (default). Set tokens only for the services you want. Any module
whose variables are missing is silently skipped. Configure just
wiki→ only the ninewiki_*tools are exposed, and nothing fordirectory/disk. - By explicit allow-list. Set
YANDEX360_ENABLEto a comma-separated list to pin an exact subset even when more modules are configured — e.g.YANDEX360_ENABLE=wiki.
The server logs which modules are active (and which were skipped) to stderr on startup.
For AI agents installing this server: keep the tool surface minimal — configure only the services the user actually needs. Provide just those modules' tokens (and/or pin
YANDEX360_ENABLE). Do not add tokens for services that won't be used: every extra module loads tools that only waste the model's context.
Development
git clone https://github.com/pa1ch/yandex360-mcp.git
cd yandex360-mcp
uv sync # create venv + install deps
uv run yandex360-mcp # run the server over stdio
uv run pytest # run tests
Publishing to PyPI
uv build # wheel + sdist into dist/
uv publish # needs a PyPI token (UV_PUBLISH_TOKEN or --token)
Roadmap
directorymodule — users, departments, org structure (Yandex 360 Directory API).diskmodule — file and folder operations (Yandex Disk API).
Contributions welcome — a new service is a single module exposing is_configured() and
register(mcp), then one line in the module registry.
License
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 yandex360_mcp-0.1.2.tar.gz.
File metadata
- Download URL: yandex360_mcp-0.1.2.tar.gz
- Upload date:
- Size: 16.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e8a48eb1f9ac5694d4cf3f98accb429a53d4aaced7c698110a5957d8e3ff457
|
|
| MD5 |
676890dbd2476a5da5c093b8b9171eee
|
|
| BLAKE2b-256 |
cf817beb3258f22e6b8e80355187bd0e9686d396eeb3acb838b5193d0f15a302
|
Provenance
The following attestation bundles were made for yandex360_mcp-0.1.2.tar.gz:
Publisher:
release.yml on pa1ch/yandex360-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yandex360_mcp-0.1.2.tar.gz -
Subject digest:
8e8a48eb1f9ac5694d4cf3f98accb429a53d4aaced7c698110a5957d8e3ff457 - Sigstore transparency entry: 2201313955
- Sigstore integration time:
-
Permalink:
pa1ch/yandex360-mcp@1fcdf6ce1fe57a1d70d8244bd074abc48ff700e4 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/pa1ch
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@1fcdf6ce1fe57a1d70d8244bd074abc48ff700e4 -
Trigger Event:
push
-
Statement type:
File details
Details for the file yandex360_mcp-0.1.2-py3-none-any.whl.
File metadata
- Download URL: yandex360_mcp-0.1.2-py3-none-any.whl
- Upload date:
- Size: 11.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
08910e0d8bd5fc9a2f4d165520e957233ecb359fdf8721979adee8598f46e091
|
|
| MD5 |
8482058fe66795b466603574c6f03d6c
|
|
| BLAKE2b-256 |
1123594ac7be2195a1c8a5953683839a02dd2977f5a7790b28761bdde5e5f8a0
|
Provenance
The following attestation bundles were made for yandex360_mcp-0.1.2-py3-none-any.whl:
Publisher:
release.yml on pa1ch/yandex360-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yandex360_mcp-0.1.2-py3-none-any.whl -
Subject digest:
08910e0d8bd5fc9a2f4d165520e957233ecb359fdf8721979adee8598f46e091 - Sigstore transparency entry: 2201314166
- Sigstore integration time:
-
Permalink:
pa1ch/yandex360-mcp@1fcdf6ce1fe57a1d70d8244bd074abc48ff700e4 -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/pa1ch
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@1fcdf6ce1fe57a1d70d8244bd074abc48ff700e4 -
Trigger Event:
push
-
Statement type: