AgentHubAgentHub

cloudscope

MCP ServerMCP Registry官方收录

io.github.alexpota/cloudscope · v0.3.3

Azure + GCP cost management: spending, forecasts, anomalies, budgets, idle resources, and tags.

概览

cloudscope 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "cloudscope": {
      "command": "npx",
      "args": [
        "-y",
        "cloudscope-mcp"
      ]
    }
  }
}

环境变量

AZURE_SUBSCRIPTION_ID可选

Azure subscription ID to query for cost data. Optional; auto-detected from az login session if not set.

AZURE_TENANT_ID可选

Azure tenant ID for service principal authentication. Optional; falls back to DefaultAzureCredential (e.g. az login) if unset.

AZURE_CLIENT_ID可选

Service principal client ID. Optional; required only when using ClientSecretCredential.

AZURE_CLIENT_SECRET可选secret

Service principal client secret. Optional; required only when using ClientSecretCredential.

GOOGLE_CLOUD_PROJECT可选

GCP project ID. Recommended to set explicitly in the MCP client env block — may not be inherited from gcloud shell configuration.

GCP_BILLING_TABLE可选

Fully-qualified BigQuery billing export table (project.dataset.table_name). Required for GCP cost queries.

GCP_PROJECT_ID可选

Override GCP project ID if the billing dataset lives in a different project than GOOGLE_CLOUD_PROJECT.

GCP_BILLING_ACCOUNT_ID可选

GCP billing account ID (format: XXXXXX-XXXXXX-XXXXXX). Optional; needed only for budget monitoring.

GOOGLE_APPLICATION_CREDENTIALS可选secret

Path to GCP service account JSON key file. Optional; falls back to Application Default Credentials (gcloud auth).

相关资源

统一 Manifest

{
  "id": "io.github.alexpota/cloudscope",
  "type": "mcp-server",
  "version": "0.3.3",
  "displayName": "cloudscope",
  "description": "Azure + GCP cost management: spending, forecasts, anomalies, budgets, idle resources, and tags.",
  "repository": {
    "url": "https://github.com/alexpota/cloudscope-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "cloudscope-mcp",
        "version": "0.3.3",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AZURE_SUBSCRIPTION_ID",
            "description": "Azure subscription ID to query for cost data. Optional; auto-detected from az login session if not set."
          },
          {
            "name": "AZURE_TENANT_ID",
            "description": "Azure tenant ID for service principal authentication. Optional; falls back to DefaultAzureCredential (e.g. az login) if unset."
          },
          {
            "name": "AZURE_CLIENT_ID",
            "description": "Service principal client ID. Optional; required only when using ClientSecretCredential."
          },
          {
            "name": "AZURE_CLIENT_SECRET",
            "description": "Service principal client secret. Optional; required only when using ClientSecretCredential.",
            "isSecret": true
          },
          {
            "name": "GOOGLE_CLOUD_PROJECT",
            "description": "GCP project ID. Recommended to set explicitly in the MCP client env block — may not be inherited from gcloud shell configuration."
          },
          {
            "name": "GCP_BILLING_TABLE",
            "description": "Fully-qualified BigQuery billing export table (project.dataset.table_name). Required for GCP cost queries."
          },
          {
            "name": "GCP_PROJECT_ID",
            "description": "Override GCP project ID if the billing dataset lives in a different project than GOOGLE_CLOUD_PROJECT."
          },
          {
            "name": "GCP_BILLING_ACCOUNT_ID",
            "description": "GCP billing account ID (format: XXXXXX-XXXXXX-XXXXXX). Optional; needed only for budget monitoring."
          },
          {
            "name": "GOOGLE_APPLICATION_CREDENTIALS",
            "description": "Path to GCP service account JSON key file. Optional; falls back to Application Default Credentials (gcloud auth).",
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.alexpota/cloudscope",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.alexpota%2Fcloudscope/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
cloudscope — MCP Server 安装与配置 · AgentHub