mcp
Health Pass
- License — License: Apache-2.0
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Community trust — 29 GitHub stars
Code Warn
- Code scan incomplete — No supported source files were scanned during light audit
Permissions Pass
- Permissions — No dangerous permissions requested
This project provides a suite of specialized MCP servers designed to manage and interact with Yandex Cloud infrastructure. It allows AI assistants to deploy applications and configure cloud resources like Compute, VPC, and Storage.
Security Assessment
Because the automated code scan could not analyze the source files, a granular code-level review is unavailable. However, the tool inherently manages cloud infrastructure, meaning it will make external network requests to Yandex Cloud APIs and likely handle sensitive authentication tokens and cloud credentials. No hardcoded secrets or dangerous standalone permissions were detected by the automated scanner. The overall risk is rated as Medium, primarily because the tool is designed to execute infrastructure changes and requires privileged API keys to function.
Quality Assessment
The project is actively maintained, with its most recent updates pushed today. It is protected by the standard Apache-2.0 license and features clear, well-structured documentation. While community trust metrics are still growing (29 GitHub stars), the project appears to be an official offering from the Yandex Cloud organization.
Verdict
Use with caution: While the project is actively maintained and officially backed, its deep integration with cloud infrastructure demands strict manual review of how your sensitive API credentials are handled before deploying it in production.
Yandex Cloud MCP Servers
Yandex Cloud MCP Servers
Specialized MCP servers for interacting with Yandex Cloud using the MCP protocol.
Table of Contents
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.
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 | MCP server to deploy simple applications in Yandex Cloud with Compute, VPC, IAM, Storage (S3) and Managed YDB | Install |
Search & Knowledge
| 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 |
Serverless
| 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 | Manage Yandex Cloud Serverless Containers - deploy containerized applications with revisions, scaling policies, and registry management | 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 |
Data Platform
| Server Name | Description | Install |
|---|---|---|
| 🕵️♂️ Data Catalog Consumer MCP Server | Searching tables, views, queries and viewing dependency graphs in a centralized organization metadata repository | Install |
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 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.
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-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.
License
This project is licensed under the Apache-2.0 License.
Reviews (0)
Sign in to leave a review.
Leave a reviewNo results found