ydb-platform/ydb-mcp
Platform-specific configuration:
{
"mcpServers": {
"ydb-mcp": {
"command": "npx",
"args": [
"-y",
"ydb-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
--- [](https://github.com/ydb-platform/ydb-mcp/blob/main/LICENSE) [](https://badge.fury.io/py/ydb-mcp)
Model Context Protocol server for YDB. It allows to work with YDB databases from any LLM that supports MCP. This integration enables AI-powered database operations and natural language interactions with your YDB instances.
<a href="https://glama.ai/mcp/servers/@ydb-platform/ydb-mcp"> </a>
uvx, which is an allias for uv run tool, allows you to run various python applications without explicitly installing them. Below are examples of how to configure YDB MCP using uvx.
{
"mcpServers": {
"ydb": {
"command": "uvx",
"args": [
"ydb-mcp",
"--ydb-endpoint", "grpc://localhost:2136",
"--ydb-database", "/local"
]
}
}
}pipx allows you to run various applications from PyPI without explicitly installing each one. However, it must be installed first. Below are examples of how to configure YDB MCP using pipx.
{
"mcpServers": {
"ydb": {
"command": "pipx",
"args": [
"run", "ydb-mcp",
"--ydb-endpoint", "grpc://localhost:2136",
"--ydb-database", "/local"
]
}
}
}YDB MCP can be installed using pip, Python's package installer. The package is available on PyPI
Loading reviews...