Specialized MCP servers for interacting with Yandex Cloud using the MCP protocol.
MCP (Model Context Protocol) is an open-source standard for connecting AI applications to external systems.
Using MCP, AI applications like Claude or ChatGPT can connect to data sources (e.g. local files, databases), tools (e.g. search engines, calculators) and workflows (e.g. specialized prompts) — enabling them to access key information and perform tasks.
MCP solves a fundamental challenge in AI development: connecting AI assistants to the systems and data they need to be useful. Without MCP, developers must build custom integrations for each AI platform and data source combination. This creates duplicated work and maintenance burden.
MCP provides a universal standard that works across different AI applications. This dramatically reduces development time and makes AI integrations more reliable and maintainable.
As the adoption of AI continues to grow across all areas of development, we sincerely believe that managing cloud infrastructure with MCP servers is part of the future of cloud management.
MCP servers of cloud providers also help to open the door to the world of cloud technologies for non-tech people, e.g. product manager who wants to validate their new idea but doesn't have sufficient skills - it's never been easier to build and deploy the "proof-of-concept" of any service than by using AI + MCP.
Using provided MCP servers, you can manage Yandex Cloud infrastructure either for "VibeDevOps" and complex AI-automation scenarios, which extremely simplifies working with the cloud infrastructure.
| Server Name | Description | Install |
|---|---|---|
| 🛠️ Toolkit MCP Server | MCP server to deploy simple applications in Yandex Cloud with Compute, VPC, IAM, Storage (S3) and Managed YDB | Install |
| Server Name | Description | Install |
|---|---|---|
| 📚 Documentation MCP Server | Real-time free access to official Yandex Cloud documentation using generative search | Install |
| 🔍 Yandex Search MCP Server | Web search using Yandex Search: both generative and classic | Install |
| Server Name | Description | Install |
|---|---|---|
| 🚀 Functions MCP Server (Preview) | Manage Yandex Cloud Serverless Functions - create, deploy, configure functions and their versions, tags and scaling policies | Install |
| 📦 Serverless Containers MCP Server (Preview) | Manage Yandex Cloud Serverless Containers - deploy containerized applications with revisions, and scaling policies | Install |
| 🔌 Triggers MCP Server (Preview) | Manage event-driven triggers for functions and containers from various sources like timers, message queues, object storage, and IoT | Install |
| ⚡ Workflows MCP Server (Preview) | Create and manage serverless workflows with YAML specifications, executions, and scheduling | Install |
| 🌐 API Gateway MCP Server (Preview) | Manage API gateways with OpenAPI specifications, custom domains, and WebSocket connections | Install |
| 🔗 MCP Gateway MCP Server (Preview) | Configure MCP gateways with custom tools that invoke functions, containers, HTTP endpoints, and workflows | Install |
| Server Name | Description | Install |
|---|---|---|
| 🕵️♂️ Data Catalog Consumer MCP Server | Searching tables, views, queries and viewing dependency graphs in a centralized organization metadata repository | Install |
To connect your assistant with MCP servers, you have to update your assistant's configuration (e.g. Cline, Roo Code or Claude Desktop) by adding chosen server.
Most MCP servers need to be authorized in Yandex Cloud. There are several ways to configure and authorize:
Provides automatic authentication by integrating with Yandex Cloud CLI.
Prerequisites:
- Server-specific Yandex Cloud roles.
- Node.js 18.0.0 or higher
- Yandex Cloud CLI (
yc) installed with configured user profile
See the package documentation for more details.
Configuration example:
{
"mcpServers": {
"yandex-cloud-toolkit": {
"type": "stdio",
"command": "npx",
"args": [
"-y", "@yandex-cloud/mcp",
"-s", "toolkit"
]
}
}
}Here
toolkitstands for the server name, e.g.search,functions,docs. You can find the particular server's name in its npm client configuration section, e.g. this one for Yandex Search MCP Server.
Prerequisites:
-
Server-specific Yandex Cloud roles.
-
IAM token. You can get it using Yandex Cloud CLI:
yc iam create-tokenfor user accountyc iam create-token --impersonate-service-account-id <service-account-id>for service account
The IAM token has a maximum lifespan of 12 hours. After expiration, it must be rotated.
Configuration example:
{
"mcpServers": {
"yandex-cloud-toolkit": {
"type": "streamableHttp",
"url": "https://toolkit.mcp.cloud.yandex.net/mcp",
"headers": {
"Authorization": "Bearer <YC IAM Token>"
}
}
}
}You can find the particular server's url in its streamable http configuration section, e.g. this one for Yandex Search MCP Server.
This project is licensed under the Apache-2.0 License.