Skip to main content
These docs are available via a Model Context Protocol (MCP) server. Use this integration to find relevant guides, setup steps, and implementation details directly from your AI assistant with links back to the docs.
The Docs MCP is also able to answer questions about the Vantage Terraform provider.
Some ways you can use the Vantage Docs MCP include:
  • Find setup steps (e.g., connecting AWS, Azure, GCP)
  • Locate VQL examples for common questions
  • Ask how to create a Terraform resource for Vantage features, like Cost Reports or Anomaly Alerts
  • Understand feature behavior (alerts, dashboards, forecasting, etc.)
  • Pull exact page links to share in Slack, tickets, or PRs
You can use the Vantage Docs MCP along with the Vantage MCP to query your costs and see how to create monitoring resources, like alerts and reports. See the Use Case section for a sample workflow.

Server URL

  • Vantage Docs MCP server: https://docs.vantage.sh/mcp
  • Available tool: search
The search tool returns contextual results with titles and direct links to the matching documentation pages.

Quick Installation

From any docs page, open the contextual menu next to the page title and select one of the following options:
  • Copy page: Lets you copy the current docs page in Markdown format to paste as context for an AI agent.
  • Connect to Cursor: Opens the Tools & Integrations setup screen in Cursor to add the Vantage docs as a new integration.

Connect the Server to Your Tools

  • Claude
  • Claude Code
  • Cursor
See the Model Context Protocol guide for more details.
1

Open Claude Connectors

Go to Claude Settings > Connectors (https://claude.ai/settings/connectors).
2

Add the Vantage Docs MCP server

Select Add custom connector, then enter:
  • Name: Vantage Docs
  • URL: https://docs.vantage.sh/mcp
3

Chat with the server

Save the connector. Open a new chat and ask what tools are available for the Vantage Docs MCP. You should see the search tool as an available tool.

Example Prompts

  • “Where do I find steps to connect Azure EA and what permissions are needed?”
  • “What’s the VQL to filter costs by a specific charge type?”
  • “How do I configure cost anomaly alerts and what thresholds are supported?”
  • “Link me to the page describing the Vantage MCP tools.”
  • “How do I export GCP billing data for Vantage?”

Use Case - Discover Anomalies and Set Up Monitoring

You’re investigating recent cost issues and want to set up proper monitoring to prevent future surprises.
1

Discover anomalies using the Vantage MCP

Ask your AI tool (connected to both MCP servers):
Check for any cost anomalies in our AWS costs from the last 30 days, particularly focusing on services that had unusual spending patterns.
Your assistant uses the Vantage MCP’s list-anomalies tool and finds several anomalies in EC2 and S3 services.
2

Research setup steps using the Vantage Docs MCP

Now ask for the setup documentation:
Search the Vantage docs for how to configure cost anomaly alerts and set up Jira integration for automatic issue creation when anomalies are detected.
Your assistant uses the Vantage Docs MCP search tool and finds:
  • Cost anomaly alerts configuration steps
  • Jira integration setup process
  • Alert threshold configuration options
3

Set up monitoring and automation in Vantage

Based on the provided guidance, you can now:
  • Configure anomaly alerts with appropriate thresholds
  • Set up Jira integration to automatically create tickets
  • Create dashboards to monitor the affected services
  • Set up Slack notifications for immediate awareness

Use Case - Troubleshooting Terraform Syntax

You encounter a Terraform syntax error and ask your AI tool (connected to the Vantage Docs MCP) how to fix the issue.
1

Fix Terraform syntax error using the Vantage Docs MCP

I am getting some issues with the below Terraform code:
resource "vantage_dashboard" "multi_cloud_monitoring" {
  title           = "AWS & Azure Cost Monitoring Dashboard"
  workspace_token = var.workspace_token

  # Multi-Cloud Overview Widget
  widgets {
    widgetable_token = vantage_cost_report.multi_cloud.token
    title            = "Multi-Cloud Overview"
  }
}
The following error is returned:
│ Error: Unsupported block type

│   on main.tf line 257, in resource "vantage_dashboard" "multi_cloud_monitoring":
│ 257:   widgets {

│ Blocks of type "widgets" are not expected here. Did you mean to
│ define argument "widgets"? If so, use the equals sign to assign
│ it a value.
Your AI assistant uses the Vantage Docs MCP to find the correct syntax and provides the fix:
The issue is with the syntax for the widgets block. In the Vantage Terraform provider, widgets should be defined as an argument (using =) with a list of objects, not as a block (using ).Here’s the corrected code:
resource "vantage_dashboard" "multi_cloud_monitoring" {
  title           = "AWS & Azure Cost Monitoring Dashboard"
  workspace_token = var.workspace_token

  # Multi-Cloud Overview Widget
  widgets = [
    {
      widgetable_token = vantage_cost_report.multi_cloud.token
      title            = "Multi-Cloud Overview"
    }
  ]
}
Key changes:
  • Changed widgets { to widgets = [
  • Wrapped the widget configuration in { } as an object
  • Enclosed it in [ ] to make it a list (since you can have multiple widgets)
  • Closed with ] instead of }
If you want to add more widgets to the dashboard, you can simply add more objects to the list:
widgets = [
  {
    widgetable_token = vantage_cost_report.multi_cloud.token
    title            = "Multi-Cloud Overview"
  },
  {
    widgetable_token = vantage_cost_report.aws_services.token
    title            = "AWS Services Breakdown"
  }
]
This syntax follows the Terraform convention where repeatable nested structures are defined as lists of objects when using the = assignment syntax.
2

Deploy and validate

With the syntax error fixed, you can now deploy your Terraform configuration:
# Initialize and validate
terraform init
terraform validate

# Plan the deployment
terraform plan

# Apply the configuration
terraform apply
The dashboard will now deploy successfully with the correct widgets syntax, and you’ll have a multi-cloud monitoring dashboard in your Vantage console.

Troubleshooting

This server exposes only search for docs lookup. For interacting with Vantage data via tools, see the Vantage MCP.
Ensure you’re using the correct URL: https://docs.vantage.sh/mcp.
I