Skip to main content
Glama

aws-pricing-mcp

AWS EC2 料金 MCP サーバー

AWS EC2 料金 MCP サーバーを使用すると、LLM または自動化スクリプトから 1 回の呼び出しで EC2 の料金をリアルタイムで照会できます。事前に解析された AWS 料金カタログに基づいて、次のような質問に答えます。

What is the cheapest EC2 instance with 32GB RAM?

Which AMD instances have more than 3.5 Ghz CPUs?

What is the 3-yr All Upfront discount on r6g family in eu-west-1?

What is the cheapest instance to run Windows with SQL Server Enterprise?

Dockerの使用

Dockerハブイメージの使用

Docker ハブ イメージには次の mcp_config.json を使用します。

{ "mcpServers": { "AWS EC2 Pricing MCP": { "command": "docker", "args": ["run", "--rm", "-i", "-q", "--network", "none", "ai1st/aws-pricing-mcp"] } } }
  • --rmフラグは、コンテナの終了時にコンテナを削除します。
  • -iフラグは、stdio 通信の対話型モードを有効にします。
  • -qフラグは、イメージのダウンロードに関する docker メッセージを抑制します。
  • --network noneコンテナをネットワークから完全に切断し、データの流出がないことを保証します。

ローカルイメージの使用

イメージをビルドします。

docker build -t aws-pricing-mcp . --build-arg BUILD_DATE=$(date +%Y-%m-%d)

これにより、価格データがダウンロードされ、イメージがビルドされます。BUILD_DATEパラメータにより、ビルド中に最新の価格データがダウンロードされます。

ローカルにビルドされたイメージのサンプル mcp_config.json:

{ "mcpServers": { "AWS EC2 Pricing MCP": { "command": "docker", "args": ["run", "--rm", "-i", "--network", "none", "aws-pricing-mcp"] } } }
  • --rmフラグは、コンテナの終了時にコンテナを削除します。
  • -iフラグは、stdio 通信の対話型モードを有効にします。
  • --network noneコンテナをネットワークから完全に切断し、データの流出がないことを保証します。

Pythonを直接使用する

まず価格データをダウンロードする必要があります。

curl https://cloudfix-public-aws-pricing.s3.us-east-1.amazonaws.com/pricing/ec2_pricing.json.gz | gunzip > ec2_pricing.json

server.py と同じディレクトリにある必要があります。

ローカル Python のサンプル mcp_config.json:

{ "mcpServers": { "AWS EC2 Pricing MCP": { "command": "python", "args": [ "/path/to/server.py" ] } } }

組み立て説明書

Docker イメージの構築と公開の手順については、 BUILD.md を参照してください。

価格データ JSON 形式

PRICING.md を参照してください。

-
security - not tested
A
license - permissive license
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

AWS EC2 料金 MCP サーバーを使用すると、LLM または自動化スクリプトから 1 回の呼び出しで EC2 の料金をリアルタイムで照会できます。事前に解析された AWS 料金カタログに基づいて、次のような質問に答えます。

32GB RAM を搭載した最も安価な EC2 インスタンスは何ですか?

3.5 Ghz を超える CPU を搭載している AMD インスタンスはどれですか?

eu-west-1 の r6g ファミリーの 3 年間全額前払い割引はいくらですか?

SQL Server Enterprise で Windows を実行するのに最も安価なインスタンスは何ですか?

  1. Dockerの使用
    1. Dockerハブイメージの使用
    2. ローカルイメージの使用
  2. Pythonを直接使用する
    1. 組み立て説明書
      1. 価格データ JSON 形式

        Related MCP Servers

        • Amazon Web Services
          aws-mcp

          A
          security
          F
          license
          A
          quality
          A Model Context Protocol (MCP) server that enables AI assistants like Claude to interact with your AWS environment. This allows for natural language querying and management of your AWS resources during conversations. Think of better Amazon Q alternative.
          Last updated -
          3
          282
          TypeScript
          • Apple
        • -
          security
          F
          license
          -
          quality
          An MCP server that enables Claude to generate and execute AWS CLI commands, allowing users to manage AWS resources through natural language conversations.
          Last updated -
          2
          TypeScript
        • -
          security
          F
          license
          -
          quality
          This MCP server enables users to interact with AWS Amplify Gen2 application data through natural language, allowing AI assistants like Claude to perform operations on Amplify data models using conversational language instead of complex code.
          Last updated -
          1
          JavaScript
        • -
          security
          F
          license
          -
          quality
          A simplified MCP server that provides a streamlined way to interact with AWS CloudWatch resources (log groups, log queries, and alarms) through the MCP protocol.
          Last updated -
          4
          Python
          • Linux
          • Apple

        View all related MCP servers

        MCP directory API

        We provide all the information about MCP servers via our MCP API.

        curl -X GET 'https://glama.ai/api/mcp/v1/servers/trilogy-group/aws-pricing-mcp'

        If you have feedback or need assistance with the MCP directory API, please join our Discord server