yandex360-mcp
MCP server that enables AI assistants to interact with Yandex 360 organization services, currently supporting Yandex Wiki for reading, editing, and searching pages.
README
<!-- mcp-name: io.github.pa1ch/yandex360-mcp -->
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.
<details> <summary><b>Claude Code</b></summary>
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"].
</details>
<details> <summary><b>Claude Desktop</b></summary>
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. </details>
<details> <summary><b>Cursor</b></summary>
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"
}
}
}
}
</details>
<details> <summary><b>VS Code / GitHub Copilot</b></summary>
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}"
}
}
}
}
</details>
<details> <summary><b>Other MCP clients</b></summary>
Any stdio MCP client works. Point it at the command:
uvx yandex360-mcp@latest
with WIKI_TOKEN and WIKI_ORG_ID in the environment.
</details>
Available MCP Tools
<details open> <summary><b>Wiki</b> (9 tools)</summary>
| 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) |
</details>
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
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。