by vantage-sh
Fetch and explore cloud cost and usage data from a Vantage account using natural language through AI assistants and MCP clients.
The Vantage MCP Server acts as a bridge between Vantage's cloud‑cost APIs and AI assistants that support the Model Context Protocol (MCP). By running locally, it enables natural‑language queries such as “How much did we spend on AWS EC2 last month?” and returns structured cost information.
.tool-versions
) and Node.js.go build -o vantage-mcp-server
, and make the binary executable../vantage-mcp-server
.VANTAGE_BEARER_TOKEN
with a read‑only Vantage API token.query-costs
, list-budgets
, or list-anomalies
from the AI assistant's UI.query-costs
, list-cost-reports
, list-budgets
, list-anomalies
).submit-user-feedback
lets users send usage insights back to Vantage.list-anomalies
.get-cost-report-forecast
for capacity planning.go build
to rebuild the binary.brew install vantage-sh/tap/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: The Vantage MCP Server is available in both self-hosted and remote forms. This repository supports the self-hosted version, which runs locally using Standard Input/Output (stdio) Transport. For a remote alternative, see the Vantage MCP documentation.
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
list-costs
list-cost-reports
get-cost-report-forecast
list-cost-integrations
list-cost-providers
list-cost-services
list-budgets
list-dashboards
list-tags
list-tag-values
list-anomalies
list-unit-costs
get-myself
submit-user-feedback
If you're installing from source, ensure the following packages are installed (see .tool-versions
for exact versions):
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.
brew install vantage-sh/tap/vantage-mcp-server
git clone https://github.com/vantage-sh/vantage-mcp-server
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.
npx @modelcontextprotocol/inspector -e VANTAGE_BEARER_TOKEN=<token> ./vantage-mcp-server
Setup instructions vary depending on which MCP client you use. Example clients include:
See the MCP documentation for a list of available clients. Detailed instructions for Claude for Desktop, Cursor, and Goose are provided below.
Command + ,
).~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
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>" }
}
}
}
Save the configuration file and restart Claude.
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.
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.
Download Cursor.
Open Cursor and click Cursor > Settings > Cursor Settings from the menu bar.
In the left pane, select MCP.
Click Add new global MCP Server.
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>" }
}
}
}
Command + ,
).vantage-mcp-server
.Vantage
.Query costs and usage data
.VANTAGE_BEARER_TOKEN
and the value set to your Vantage API token.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.
If you'd like to contribute to this project:
git checkout -b feature/my-feature
.We welcome community contributions, improvements, and bug fixes. If you run into any issues, submit a bug report via this repository's GitHub Issues.
See the LICENSE.MD
file for commercial and non-commercial licensing details.
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by antvis
Offers over 25 AntV chart types for automated chart generation and data analysis, callable via MCP tools, CLI, HTTP, SSE, or streamable transports.
by reading-plus-ai
A versatile tool that enables interactive data exploration through prompts, CSV loading, and script execution.
by Canner
Provides a semantic engine that lets MCP clients and AI agents query enterprise data with contextual understanding, precise calculations, and built‑in governance.
by surendranb
Provides natural‑language access to Google Analytics 4 data via MCP, exposing over 200 dimensions and metrics for Claude, Cursor and other compatible clients.
by ergut
Provides secure, read‑only access to BigQuery datasets, allowing large language models to query and analyze data through a standardized interface.
by isaacwasserman
Provides an interface for LLMs to visualize data using Vega‑Lite syntax, supporting saving of data tables and rendering visualizations as either a full Vega‑Lite specification (text) or a base64‑encoded PNG image.
by acryldata
Provides a Model Context Protocol server that enables searching, metadata retrieval, lineage traversal, and SQL query listing for DataHub entities.
by rishijatia
Provides programmatic access to Fantasy Premier League statistics, team information, gameweeks, and analysis tools via a Model Context Protocol server.
by gomarble-ai
Provides seamless integration of the Google Ads API with Model Context Protocol clients, handling OAuth 2.0 authentication, automatic token refresh, GAQL query execution, account management, and keyword‑research capabilities.