Overview
Waldur MCP Server is a cloud platform service that allows users to manage and configure their cloud resources efficiently.
To use Waldur MCP Server, install Claude Desktop, set up Python, and configure the server with the necessary environment variables and commands as outlined in the documentation.
- Easy installation and configuration process - Support for multiple server configurations (development and published) - Integration with Waldur API for resource management
- Managing cloud resources for applications
- Configuring and deploying cloud services
- Debugging cloud server issues using MCP Inspector
Add to your AI client
Use these steps to connect Waldur MCP server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"waldur-waldur-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-waldur-waldur-mcp-server-mcp-mirror"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"waldur-waldur-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-waldur-waldur-mcp-server-mcp-mirror"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"waldur-waldur-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-waldur-waldur-mcp-server-mcp-mirror"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"waldur-waldur-mcp-server-mcp-mirror": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-waldur-waldur-mcp-server-mcp-mirror"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"waldur-waldur-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-waldur-waldur-mcp-server-mcp-mirror"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"waldur-waldur-mcp-server-mcp-mirror": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-waldur-waldur-mcp-server-mcp-mirror"
]
}
}
}FAQ
What is required to run Waldur MCP Server?
You need Claude Desktop, Python 3.10 or higher, and the uv package manager.
Can I debug my server easily?
Yes, using the MCP Inspector provides a better debugging experience.
Is there a way to publish my package?
Yes, you can publish your package to PyPI after building it.