drio
Open app

Cloudzero Model Context Protocol (MCP) server

Source

Talk to your cloud data using CloudZero API and Model Context Protocol (MCP) server for LLM tool calling

Catalog onlyCatalog onlySTDIO

Overview

Cloudzero MCP is a server that allows users to interact with their cloud cost data using the CloudZero API and Model Context Protocol (MCP) for Large Language Model (LLM) tool calling.

To use Cloudzero MCP, install Claude Desktop and the necessary dependencies, generate a CloudZero API key, and configure the server settings in the Claude Desktop configuration file. Once set up, you can ask questions about your cloud billing and cost data.

  • Integration with CloudZero v2 API for cloud cost data access - Ability to ask questions about cloud billing and visualize cost data - Debugging tools for troubleshooting and inspecting server processes
  1. Analyzing cloud spending trends over time.
  2. Generating reports on cloud cost data.
  3. Debugging and troubleshooting cloud cost-related issues.

Add to your AI client

Use these steps to connect Cloudzero Model Context Protocol (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": {
    "cloudzero-mcp-burkestar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cloudzero-mcp-burkestar"
      ]
    }
  }
}

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": {
    "cloudzero-mcp-burkestar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cloudzero-mcp-burkestar"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "cloudzero-mcp-burkestar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cloudzero-mcp-burkestar"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "cloudzero-mcp-burkestar": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cloudzero-mcp-burkestar"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "cloudzero-mcp-burkestar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cloudzero-mcp-burkestar"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "cloudzero-mcp-burkestar": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cloudzero-mcp-burkestar"
      ]
    }
  }
}

FAQ

What is required to set up Cloudzero MCP?

You need to install Claude Desktop, set up the project dependencies, and generate a CloudZero API key.

Can I visualize my cloud cost data?

Yes! You can ask questions to plot month-over-month differences in your cloud spending.

Is there a debugging feature available?

Yes, you can run the MCP development server with an interactive GUI for debugging.