Token导航 LogoToken导航TokenDH.com
Cloud Cost Explorer MCP logo
运维云端stdio官方级别未说明来源级核验

Cloud Cost Explorer MCP

MCP Server

wrangler

一个基于Cloudflare Workers的实验性MCP服务器,用于分析云成本CSV并提供AWS、GCP和Azure的可操作优化建议。

工具数

2

提示词数

0

GitHub Stars

0

资源数

0
Cloudflare Workers云端部署Docker

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

sadesh123

提供方

sadesh123

最后核验

2026/5/17 20:21

运行时

Node.js

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

npx wrangler login

详细介绍

☁️ Cloud Cost Optimizer — MCP Server

An experimental MCP (Model Context Protocol) server built on Cloudflare Workers, designed to analyze cloud cost CSVs and provide actionable optimization recommendations for AWS — and later, GCP and Azure.

This repo accompanies the blog “Building Your First MCP Server”, showing how to deploy an MCP server, test it with MCP Inspector, and integrate it into ChatGPT.


Quick Start

1. Create project

npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
cd my-mcp-server
npm install
npm run dev

Then open http://localhost:5173, connect to http://localhost:8787/sse

You should see:

  • cost-hello
  • cost-analyze-csv-url

Deploy to Cloudflare

npx wrangler login
npx wrangler deploy

Your server will be available at: https://your-worker.workers.dev/sse

You can now connect it to ChatGPT or any other MCP client.

Tools

cost-hello

A minimal MCP tool returning a greeting message and example structured output. Used to verify the server’s JSON-RPC setup.

cost-analyze-csv-url

Fetches and analyzes a cloud cost CSV directly from a URL (no file upload).

  • Reads CSV from GitHub raw or S3
  • Parses it safely using forgiving logic
  • Aggregates spend by service
  • Produces structured JSON output with top services and recommendations
  • Displays a simple inline widget (cost-widget)

Key Implementation Details

  • Cloudflare Workers-compatible — no Node file I/O

→ uses fetch(url) for CSV retrieval

  • Forgiving CSV parsing — handles empty lines, extra commas, and quote mismatches
  • Dynamic UI widget (text/html+skybridge) for structured cost insights
  • SSE streaming via /sse

目录标签

目录标签

Cloudflare Workers云端部署Docker云成本优化TypeScript本地部署CSV分析AWSGCPAzureCloudflareWorkers

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

session

运行时(runtime,运行环境)

Node.js

来源包(packageName,安装包名)

wrangler

工具数量(toolCount,工具数)

2

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdiosession部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP