Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

vantage-mcp-server

MCP.Pizza Chef: vantage-sh

The Vantage MCP Server is an open-source Golang server that enables natural language queries on your organization's cloud cost and usage data. Acting as a bridge to Vantage's APIs, it allows MCP clients like Claude and Cursor to fetch and analyze cloud spend, cost tagging, and provider integration data, making cloud cost management intuitive and accessible through AI assistants. It currently runs locally using stdio transport.

Use This MCP server To

Query cloud cost and usage data via natural language Analyze historical cloud spend with AI assistants Integrate cloud cost data into MCP client workflows Fetch cost tagging and provider integration details Enable real-time cloud cost exploration in developer tools

README

Vantage MCP Server

Use natural language to explore your organization’s cloud costs via MCP clients, like Claude, Cursor, and others. Ask questions about your organization's previous and current cloud cost spend, cost tagging, provider integrations, and more.

image

About the Vantage MCP Server

The Vantage MCP Server is an open-source tool, written in Golang, that lets you interact with your cloud cost data through AI assistants and MCP clients. By acting as a bridge to Vantage's existing APIs, the Vantage MCP Server lets you query cloud spend data using natural language and makes cost analysis more intuitive.

📝 Note: At this time, the Vantage MCP Server is available only as a locally run service using Standard Input/Output (stdio) Transport, meaning it must be executed on your machine or server and integrated with an MCP client.

Available Tools

The Vantage MCP Server currently exposes the following tools, which can be invoked by any compatible MCP client (e.g., Claude, Cursor, Goose):

  • query-costs

    • A general purpose way to fetch Cost data using VQL.
  • list-costs

    • Display all the Costs in an associated Cost Report.
  • list-cost-reports

    • List all Cost Reports available.
  • get-cost-report-forecast

    • List all Forecasts of spending related to a Cost Report.
  • list-cost-integrations

    • List all Cost Provider integrations (e.g., AWS, Azure, GCP) available to provide Costs data from and their associated accounts.
  • list-cost-providers

    • List of just the Providers that the given Workspace has shared with it.
  • list-cost-services

    • Lists all the Services and their associated Provider that is shared with the given Workspace.
  • list-budgets

    • List all Budgets available to compare against a Cost Report and track spending.
  • list-dashboards

    • List all Dashboards created in the Vantage account.
  • list-tags

    • List Tags that can be used to filter Cost Reports.
  • list-tag-values

    • List Tag values that can be used to filter Cost Reports.
  • list-anomalies

    • List Anomalies that were detected on Cost Reports.
  • list-cost-providers

    • List Cost Providers that can be used to filter Costs in VQL queries.
  • list-unit-costs

    • Retrieve the Unit Costs for a given Cost Report.
  • get-myself

    • A utility to list available Workspaces and check the access level of your auth token.
  • submit-user-feedback

    • A simple way to send feedback about the MCP or overall Vantage experience to the Vantage team.

Getting Started

Prerequisites

If you're installing from source, ensure the following packages are installed (see .tool-versions for exact versions):

  • Go
  • Node.js

You can use a version manager (e.g., asdf) or package manager (e.g., Homebrew) to install these dependencies.

You will also need to create a Read-Only Vantage API token (Write will not work at this time). Follow the instructions on the Vantage API documentation. We recommend creating a brand-new read-only API token for exclusive use with the MCP Server.

Installation

Using Homebrew

brew install vantage-sh/tap/vantage-mcp-server

From Source

  1. Clone this repository.
git clone https://github.com/vantage-sh/vantage-mcp-server
  1. Build the server and adjust permissions.
go build -o vantage-mcp-server
chmod +x vantage-mcp-server

📝 Note: If you pull down new changes from the repository, be sure to re-run go build to rebuild the server and ensure you're running the latest version.

  1. Debug using the MCP inspector.
npx @modelcontextprotocol/inspector -e VANTAGE_BEARER_TOKEN=<token> ./vantage-mcp-server

Set Up MCP Clients

Setup instructions vary depending on which MCP client you use. Example clients include:

  • Claude for Desktop
  • Cursor
  • Goose

See the MCP documentation for a list of available clients. Detailed instructions for Claude for Desktop, Cursor, and Goose are provided below.

Claude for Desktop

  1. Download Claude for Desktop.
  2. From the top of Claude for Desktop, click Claude > Settings (keyboard shortcut Command + ,).
  3. In the left menu of the Settings pane, select Developer.
  4. Click Edit Config. A configuration file is created at:
  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  1. Open the claude_desktop_config.json file and update its contents. Make sure to replace the placeholders <path_to_compiled_vantage_mcp_server_binary> with the path where you downloaded the Vantage MCP Server binary, and <personal_vantage_api_token> with your Vantage API token.

    {
      "mcpServers": {
        "Vantage": {
          "command": "<path_to_compiled_vantage_mcp_server_binary>",
          "args": [],
          "env": { "VANTAGE_BEARER_TOKEN": "<personal_vantage_api_token>" }
        }
      }
    }
  2. Save the configuration file and restart Claude.

  3. In the bottom-right corner of the Claude for Desktop input box, click the hammer icon to see the available tools for the Vantage MCP Server.

  4. Once you've set up the configuration, you can start prompting Claude. Each time you use a new tool, Claude will ask for your approval before proceeding.

Cursor

  1. Download Cursor.

  2. Open Cursor and click Cursor > Settings > Cursor Settings from the menu bar.

  3. In the left pane, select MCP.

  4. Click Add new global MCP Server.

  5. Update the contents of the opened mcp.json file. Make sure to replace the placeholders <path_to_compiled_vantage_mcp_server_binary> with the path where you downloaded the Vantage MCP Server binary, and <personal_vantage_api_token> with your Vantage API token.

    {
      "mcpServers": {
        "Vantage": {
          "command": "<path_to_compiled_vantage_mcp_server_binary>",
          "args": [],
          "env": { "VANTAGE_BEARER_TOKEN": "<personal_vantage_api_token>" }
        }
      }
    }

Goose

  1. Download Goose.
  2. Open Goose and click Goose > Settings from the menu bar (keyboard shortcut Command + ,).
  3. Under the Extensions section, click Add custom extension.
  4. In the ID field, enter vantage-mcp-server.
  5. In the Name field, enter Vantage.
  6. In the Description field, enter Query costs and usage data.
  7. In the Command field, enter the path to the Vantage MCP Server binary.
  8. In the Environment Variables section, add a new variable with the name VANTAGE_BEARER_TOKEN and the value set to your Vantage API token.
  9. Click Add.

Note for MacOS users

If you download a release from our Github page and the executable fails to run "because the developer cannot be verified", please open your System Settings. Then find the "Privacy and Security" section. Then scroll to the bottom and you should see a message that "vantage-mcp-server-macos" was blocked, click the "open anyway" button. After this flow, the executable should be able to be run without issue.

Contribution Guidelines

If you'd like to contribute to this project:

  1. Fork this repository.
  2. Create a new branch: git checkout -b feature/my-feature.
  3. Make your changes.
  4. Ensure your code is formatted and builds cleanly.
  5. Submit a pull request.

We welcome community contributions, improvements, and bug fixes. If you run into any issues, submit a bug report via this repository's GitHub Issues.

License

See the LICENSE.MD file for commercial and non-commercial licensing details.

vantage-mcp-server FAQ

How do I run the Vantage MCP Server?
The server runs locally on your machine using Standard Input/Output (stdio) transport for secure, direct communication.
Which MCP clients can connect to the Vantage MCP Server?
It supports MCP clients like Claude, Cursor, and others that can communicate over stdio transport.
What cloud cost data can I access through this server?
You can query previous and current cloud spend, cost tagging, and provider integration data from your Vantage account.
Is the Vantage MCP Server open source?
Yes, it is an open-source project written in Golang, allowing customization and community contributions.
Can I use the Vantage MCP Server with multiple cloud providers?
The server accesses data via Vantage, which supports multiple cloud providers, enabling multi-cloud cost analysis.
Does the server support remote deployment?
Currently, it is designed to run locally and does not support remote or cloud deployment out of the box.
How does the server ensure secure data access?
By running locally and using stdio transport, it limits exposure and keeps your cloud cost data secure during queries.