Waldur MCP server
Integrates Waldur instances with Claude Desktop using the Model Context Protocol (MCP).
Waldur MCP server
Waldur MCP server enables integration between Waldur instance and Claude Desktop by implementing the Model Context Protocol (MCP). This allows Claude to interact with your Waldur instance directly.
Quickstart
-
Install Claude Desktop for your platform from the Claude Desktop releases page
-
Install Python 3.13 or higher.
-
Install uv package manager.
Installation
To install the package:
pip install waldur-mcp-server
Or with uv:
uv pip install waldur-mcp-server
Generate Waldur Token
- Log in to your Waldur instance
- Navigate to Username > Credentials > API Token
- Generate a new token with appropriate token lifetime - you'll need it for configuration
Claude Desktop MCP Server Configuration
On Windows: %APPDATA%\Claude\claude_desktop_config.json
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"waldur-mcp-server": {
"command": "uv",
"args": [
"--directory",
"C:\\waldur_service",
"run",
"waldur-mcp-server"
],
"env": {
"WALDUR_API_URL": "https://your-waldur-instance",
"WALDUR_TOKEN": "your-token"
}
}
}
}
{
"mcpServers": {
"waldur-mcp-server": {
"command": "uvx",
"args": [
"waldur-mcp-server"
],
"env": {
"WALDUR_API_URL": "https://your-waldur-instance",
"WALDUR_TOKEN": "your-token"
}
}
}
}
Debugging
On macOS, log files are located at ~/Library/Logs/Claude/mcp.log
If you encounter a spawn uvx ENOENT
error, verify that your PATH environment variable includes the Python installation directory where uv
is installed. Alternatively, you can specify the full path to uvx
in the configuration file, for example:
~/Library/Frameworks/Python.framework/Versions/3.13/bin/uvx
Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.
You can launch the MCP Inspector via npm
with this command:
npx @modelcontextprotocol/inspector uv --directory C:\\waldur_service run waldur-mcp-server
When debugging, you'll need to set the required environment variables. Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
Common issues
- Invalid token: Verify token permissions and expiration
- Connection issues: Check WALDUR_API_URL is accessible
Related Servers
Shared Memory MCP
An example project for deploying a remote MCP server on Cloudflare Workers without authentication.
Replicate
Run machine learning models on the Replicate platform using an API token.
Kubernetes MCP Server
Provides safe, read-only access to Kubernetes cluster resources for debugging and inspection.
Shopify MCP Server
Interact with Shopify store data such as products, customers, and orders using the GraphQL API.
IOL MCP Tool
Interact with the Invertir Online (IOL) API to manage investments and access market data.
Secure Ubuntu MCP Server
A security-focused MCP server for performing safe operations on an Ubuntu system, featuring robust security controls and audit logging.
Alpaca MCP Gold Standard
A server for interacting with the Alpaca trading API. Requires API credentials via environment variables.
Cloud PC Management
Manage Azure Cloud PCs using the Microsoft Graph API.
Doppler
Manage secrets from Doppler, a secret management platform. Requires a Doppler API token.
Cloudflare to GitHub Backup MCP Server
Backs up Cloudflare projects to a specified GitHub repository.