vcf-automation-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@vcf-automation-mcp-serverList all available catalog items in the Production project."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
vcf-automation-mcp
An MCP server that wraps the VCF Automation (formerly Aria Automation) REST API, exposing projects, catalog items, and deployments as MCP tools so an LLM client can browse and manage provisioned infrastructure directly.
This is the counterpart to vcf-ops-mcp, which wraps VCF Operations (vROps) instead.
This server can provision and delete real infrastructure (request_catalog_item,
run_deployment_action/run_deployment_resource_action, delete_deployment). Treat
its bearer token and the underlying VCF Automation refresh token with the same care as
credentials that can create and destroy VMs across your monitored environment - because
that's exactly what they are.
Setup
python3 -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
cp .env.example .env # then fill in your VCF Automation detailsRequired configuration (via .env or real environment variables):
Variable | Description |
| Base URL of the VCF Automation appliance, e.g. |
| API refresh token generated in the UI (My Account > API Tokens) |
| Tenant org name to authenticate as. Leave unset for provider ("system") level |
| Advanced: override the computed OAuth token endpoint |
| Set |
| Per-request timeout in seconds (default |
|
|
|
|
|
|
Getting a refresh token
Unlike VCF Operations (username/password), VCF Automation authenticates with a long-lived API refresh token that you generate once in the UI, which this server exchanges for short-lived (~1 hour) bearer access tokens on your behalf, caching and renewing them transparently:
Sign in to the VCF Automation UI as the org (tenant) you want the server to act as.
Click your username in the top-right corner > My Account > API Tokens > New.
Name and create the token, then copy it into
VCFA_REFRESH_TOKEN.Set
VCFA_ORGto that org's name (as shown in the Provider Management Portal), or leave it unset if you generated the token at the provider ("system") level instead.
The exact token-exchange path (VCFA_TOKEN_URL) has been documented inconsistently
across VCF Automation releases; this server defaults to /tm/oauth/tenant/<org>/token
(tenant) or /oauth/provider/token (provider) and lets you override it if your
instance's actual path differs.
Server transport/auth configuration (also via .env or real environment variables):
Variable | Description |
|
|
| Bind host for streamable-http (default |
| Bind port for streamable-http (default |
| Required for streamable-http. Clients must send |
| Comma-separated Host-header allowlist for DNS-rebinding protection |
Related MCP server: AI Core MCP Server
Running
By default this runs as a standalone remote server over streamable-http, bound to
127.0.0.1:8000, requiring a bearer token on every request:
export VCFA_MCP_BEARER_TOKEN="$(openssl rand -hex 32)"
vcf-automation-mcp
# or
python -m vcf_automation_mcpGET /healthz is unauthenticated (for load balancer/orchestrator liveness checks);
everything else requires the bearer token. 127.0.0.1 only listens locally - to
actually reach it from another host, bind VCFA_MCP_HOST=0.0.0.0 (or run it behind a
reverse proxy) and make sure the bearer token is the only thing standing between the
network and credentials capable of provisioning and deleting infrastructure across your
managed environment, so treat it like any other secret and prefer TLS termination (e.g.
a reverse proxy) in front of it rather than plaintext HTTP over an untrusted network.
When VCFA_MCP_HOST isn't 127.0.0.1/localhost, FastMCP's own DNS-rebinding
protection (a check against the incoming request's Host header) has nothing to
allowlist by default, since it only auto-configures that allowlist for a loopback host.
Left unset, no Host-header check is enforced and the bearer token is your only gate -
fine on a network you trust, but set VCFA_MCP_ALLOWED_HOSTS to the hostname(s)/IP:port
clients actually connect through (comma-separated) for defense in depth on a shared or
untrusted network.
Point an MCP client at it as a streamable-http server, e.g. in Claude Code:
claude mcp add --transport http vcf-automation http://<host>:8000/mcp \
--header "Authorization: Bearer <your-token>"Running over stdio instead
For local use where an MCP client spawns the server itself as a subprocess (no network
exposure needed), set VCFA_MCP_TRANSPORT=stdio - the bearer token is not required in
this mode. Example Claude Desktop config:
{
"mcpServers": {
"vcf-automation": {
"command": "/absolute/path/to/.venv/bin/vcf-automation-mcp",
"env": {
"VCFA_MCP_TRANSPORT": "stdio",
"VCFA_BASE_URL": "https://vcfa.example.com",
"VCFA_REFRESH_TOKEN": "changeme",
"VCFA_ORG": "my-tenant-org"
}
}
}
}Tools
Projects
list_projects— visibility/isolation boundaries for provisioned resourcesget_project— full detail for one project
Catalog
list_catalog_items— browse blueprints/templates available to request, optionally by projectget_catalog_item— full detail for one catalog itemlist_catalog_item_versions— published versions of a catalog item that can be requestedrequest_catalog_item— provisions a new deployment from a catalog item
Deployments
list_deployments— provisioned instances of a blueprint/catalog itemget_deployment— full detail for one deploymentlist_deployment_resources— resources (VMs, networks, disks, etc.) within a deploymentget_deployment_resource— full detail for one resource within a deploymentlist_deployment_actions— day-2 actions available on a deployment (e.g. ChangeLease)list_deployment_resource_actions— day-2 actions available on a resource (e.g. PowerOff)run_deployment_action— runs a day-2 action on a deploymentrun_deployment_resource_action— runs a day-2 action on a resourcedelete_deployment— destroys a deployment and its provisioned resources
Requests
get_request— poll the status of an asynchronous request (deployment/day-2 action)
Testing
pip install -e ".[dev]"
pytestTests mock the VCF Automation HTTP API with respx - no live instance required.
Notes
Pinned to
mcp<2.0.0: the MCP Python SDK's 2.x line renamedFastMCPtoMCPServerand moved it tomcp.server.mcpserver. This project targets the well-established 1.xmcp.server.fastmcp.FastMCPAPI.The VCF Automation REST API surface is large (cloud accounts, networking, policies, onboarding, blueprints, etc.); this server intentionally covers only the consumption/day-2 path - projects, catalog, deployments, requests - not infrastructure setup (cloud accounts, zones, regions).
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables file system operations, web scraping, and AI-powered search through MCP tools for use by LLM agents.1
- AlicenseNot gradedqualityDmaintenanceExposes SAP AI Core APIs as MCP tools, enabling AI assistants to manage AI Core lifecycle and administration through natural language.5MIT
- AlicenseNot gradedqualityCmaintenanceEnables natural language interaction with VMware SDDC Manager and vCenter APIs through MCP tools, allowing users to query workload domains, VMs, clusters, and more.MIT
- AlicenseAqualityDmaintenanceExposes Azure AI Foundry agents, workflows, and AI Search vector-database capabilities as MCP tools, enabling natural language interaction with agents, semantic search, and index management.102MIT
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
MCP Hub: AI service discovery, per-user OAuth, and multi-service workflow orchestration
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/mdegrasse/vcf-automation-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server