Install
$ agentstack add mcp-yandex-cloud-mcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Yandex Cloud MCP Servers
Specialized MCP servers for interacting with Yandex Cloud using the MCP protocol.
Table of Contents
- [Yandex Cloud MCP Servers](#yandex-cloud-mcp-servers)
- [Table of Contents](#table-of-contents)
- [About Model Context Protocol (MCP)](#about-model-context-protocol-mcp)
- [YC MCP Servers Concept](#yc-mcp-servers-concept)
- [Installing MCP Servers](#installing-mcp-servers)
- [Available MCP Servers](#available-mcp-servers)
- [Deployment](#deployment)
- [Search & Knowledge](#search--knowledge)
- [Serverless](#serverless)
- [Data Platform](#data-platform)
- [Configuration](#configuration)
- [NPM Client (Stdio)](#1-npm-client-stdio)
- [Streamable HTTP](#2-streamable-http)
- [License](#license)
About Model Context Protocol (MCP)
> 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. > > — Model Context Protocol documentation (Anthropic)
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.
YC MCP Servers Concept
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.
Installing MCP Servers
Available MCP Servers
Deployment
| Server Name | Description | Install | | ------------- | ------------- | --------- | | [🛠️ Toolkit MCP Server](./servers/toolkit-mcp-server/README.md) | MCP server to deploy simple applications in Yandex Cloud with Compute, VPC, IAM, Storage (S3) and Managed YDB | [Install](./servers/toolkit-mcp-server/README.md#configuration) |
Search & Knowledge
| Server Name | Description | Install | | ------------- | ------------- | --------- | | [📚 Documentation MCP Server](./servers/documentation-mcp-server/README.md) | Real-time free access to official Yandex Cloud documentation using generative search | [Install](./servers/documentation-mcp-server/README.md#configuration) | | [🔍 Yandex Search MCP Server](./servers/search-mcp-server/README.md) | Web search using Yandex Search: both generative and classic | [Install](./servers/search-mcp-server/README.md#configuration) |
Serverless
| Server Name | Description | Install | | ------------- | ------------- | --------- | | [🚀 Functions MCP Server (Preview)](./servers/functions-mcp-server/README.md) | Manage Yandex Cloud Serverless Functions - create, deploy, configure functions and their versions, tags and scaling policies | [Install](./servers/functions-mcp-server/README.md#configuration) | | [📦 Serverless Containers MCP Server](./servers/containers-mcp-server/README.md) | Manage Yandex Cloud Serverless Containers - deploy containerized applications with revisions, scaling policies, and registry management | [Install](./servers/containers-mcp-server/README.md#configuration) | | [🔌 Triggers MCP Server (Preview)](./servers/triggers-mcp-server/README.md) | Manage event-driven triggers for functions and containers from various sources like timers, message queues, object storage, and IoT | [Install](./servers/triggers-mcp-server/README.md#configuration) | | [⚡ Workflows MCP Server (Preview)](./servers/workflows-mcp-server/README.md) | Create and manage serverless workflows with YAML specifications, executions, and scheduling | [Install](./servers/workflows-mcp-server/README.md#configuration) | | [🌐 API Gateway MCP Server (Preview)](./servers/apigateway-mcp-server/README.md) | Manage API gateways with OpenAPI specifications, custom domains, and WebSocket connections | [Install](./servers/apigateway-mcp-server/README.md#configuration) | | [🔗 MCP Gateway MCP Server (Preview)](./servers/mcpgateway-mcp-server/README.md) | Configure MCP gateways with custom tools that invoke functions, containers, HTTP endpoints, and workflows | [Install](./servers/mcpgateway-mcp-server/README.md#configuration) |
Data Platform
| Server Name | Description | Install | | ------------- | ------------- | --------- | | [🕵️♂️ Data Catalog Consumer MCP Server](./servers/datacatalog-consumer-mcp-server/README.md) | Searching tables, views, queries and viewing dependency graphs in a centralized organization metadata repository | [Install](./servers/datacatalog-consumer-mcp-server/README.md#configuration) |
Configuration
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:
1. NPM Client (Stdio)
Provides authentication via OAuth (browser-based, default) or Yandex Cloud CLI (yc).
> See the npm package documentation for more details.
Prerequisites:
- Server-specific Yandex Cloud roles.
- Node.js 18.0.0 or higher
- (Optional) Yandex Cloud CLI (
yc) - required only when using CLI authentication
Authentication Options:
- OAuth (default, recommended): Run the package without authentication flags. Browser-based authentication is used automatically.
- OAuth with explicit account selection: Use
-Sor-u - CLI: Use
-pto authenticate via Yandex Cloud CLI (requires CLI installation)
Configuration example:
{
"mcpServers": {
"yandex-cloud-toolkit": {
"type": "stdio",
"command": "npx",
"args": [
"-y", "@yandex-cloud/mcp",
"-s", "toolkit"
]
}
}
}
> Here toolkit stands 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](./servers/search-mcp-server/README.md#npm-client-recommended) for Yandex Search MCP Server.
2. Streamable HTTP
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-idfor 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 "
}
}
}
}
> You can find the particular server's url in its streamable http configuration section, e.g. [this one](./servers/search-mcp-server/README.md#streamable-http) for Yandex Search MCP Server.
License
This project is licensed under the Apache-2.0 License.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: yandex-cloud
- Source: yandex-cloud/mcp
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.