MCP ExplorerExplorer

Aws Cost Notifier Mcp Server

@enomoto11on a year ago
1 MIT
FreeCommunity
AI Systems
AWS Cost Notifier MCP Server - Daily AWS cost monitoring and reporting tool

Overview

What is Aws Cost Notifier Mcp Server

The aws-cost-notifier-mcp-server is a monitoring tool designed to track and report AWS costs on a daily basis. It retrieves monthly cost data from AWS and provides a breakdown of costs by service, automatically generating reports comparing daily costs.

Use cases

Use cases include tracking daily AWS spending, generating cost reports for financial analysis, monitoring cost fluctuations, and integrating cost data into project management workflows via GitHub.

How to use

To use the aws-cost-notifier-mcp-server, clone the repository, install the necessary dependencies, set up environment variables in a .env file, build the TypeScript code, and then execute the server either directly or as a Cursor MCP server.

Key features

Key features include daily total cost retrieval, cost breakdown by service, category-wise cost aggregation (such as EC2, security, management, storage), analysis of cost changes compared to the previous day, JSON output of cost information, and automatic report posting to GitHub Issues.

Where to use

The aws-cost-notifier-mcp-server is primarily used in cloud cost management, financial monitoring, and reporting for organizations utilizing AWS services.

Content

AWS Cost Notifier MCP Server

AWSの月間コストを取得し、サービス別の内訳を表示するMCPサーバーです。
日次でコストの変動を監視し、前日比較のレポートをGitHub Issueとして自動作成します。

機能

  • 日次のAWSコスト総額の取得
  • サービス別のコスト内訳
  • カテゴリー別のコスト集計(EC2、セキュリティ、管理、ストレージなど)
  • 前日比較による変動の分析
  • コスト情報のJSON形式での出力
  • GitHub Issueへの自動レポート投稿

セットアップ

  1. リポジトリのクローン:
git clone https://github.com/yourusername/aws-cost-notifier-mcp-server.git
cd aws-cost-notifier-mcp-server
  1. 依存パッケージのインストール:
npm install
  1. 環境変数の設定:

    • .env.example.envにコピー
    cp .env.example .env
    
    • .envファイルを編集して必要な情報を設定
    # AWS Configuration
    AWS_PROFILE=default
    AWS_REGION=ap-northeast-1
    AWS_SDK_LOAD_CONFIG=1
    
    # GitHub Configuration
    GITHUB_TOKEN=your_github_token_here
    
    # Target Repository
    GITHUB_OWNER=your_organization_or_username
    GITHUB_REPO=your_repository_name
    
  2. TypeScriptのビルド:

npm run build

実行方法

直接実行

node build/index.js

Cursor MCPサーバーとして実行

  1. .cursor/mcp.jsonに以下の設定を追加:
{
  "mcpServers": {
    "aws-cost-notifier": {
      "command": "node",
      "args": [
        "build/index.js"
      ],
      "cwd": "/path/to/aws-cost-notifier-mcp-server",
      "env": {
        "AWS_PROFILE": "default",
        "AWS_REGION": "ap-northeast-1",
        "AWS_SDK_LOAD_CONFIG": "1",
        "GITHUB_TOKEN": "your_github_token",
        "GITHUB_OWNER": "your_organization_or_username",
        "GITHUB_REPO": "your_repository_name"
      }
    }
  }
}
  1. Cursorで実行:
mcp aws-cost-notifier

開発環境

VSCode

このプロジェクトにはVSCode用の推奨設定が含まれています:

  1. 推奨拡張機能:
  • ESLint
  • Prettier
  • TypeScript and JavaScript Language Features
  1. デバッグ設定:
  • F5キーでTypeScriptコードを直接デバッグ実行できます
  • 環境変数は.envファイルから自動的に読み込まれます
  1. 自動フォーマット:
  • ファイル保存時に自動フォーマット
  • ESLintの自動修正が有効

出力形式

{
  "summary": {
    "period": {
      "start": "2025-04-19",
      "end": "2025-04-20"
    },
    "totalCost": "32.14",
    "previousTotalCost": "31.98",
    "changePercentage": "+0.5",
    "currency": "USD"
  },
  "categories": [
    {
      "name": "ec2",
      "current": "22.97",
      "previous": "22.50",
      "changePercentage": "+2.1",
      "percentage": "71.5"
    }
  ],
  "details": [
    {
      "service": "Amazon Elastic Compute Cloud",
      "current": "21.7158",
      "previous": "21.2345",
      "changePercentage": "+2.3",
      "unit": "USD"
    }
  ]
}

注意事項

  • コストは推定値であり、確定額は月末の請求書で確認してください
  • AWS Cost Explorerの料金が発生する可能性があります
  • 前日比は日次の変動を示しており、月間の傾向とは異なる可能性があります
  • GitHubのAPI制限に注意してください

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers