The Equinix Fabric MCP is a real, Equinix-operated MCP server atDocumentation Index
Fetch the complete documentation index at: https://docs.equinix.dev/llms.txt
Use this file to discover all available pages before exploring further.
mcp.equinix.com/fabric. It exposes the Fabric API as agent-friendly tools — search/get for reads, create/update/delete for mutations, with the mutating tools blocked-by-default until human confirmation.
equinix.dev’s CLI uses the same MCP under the hood. So does your AI runtime, once you’ve installed the agent skills and connected your client.
What the MCP gives you
- Discovery —
search_router,search_connection,search_service_profile, etc. - Inspection —
get_router_package,get_connection,get_service_profile. - Validation —
validate_route_filter,validate_stream_sink,validate_terraform_block. - Pricing —
quote_router,quote_connection(gives you a JSON shape compatible with thepricing.mdspec). - Mutations (blocked by default) —
create_router,create_connection,update_router,delete_connection.
Connect your client
Add the Fabric MCP to your client config:How equinix-dev uses the MCP
When you run equinix-dev plan, the CLI executes this sequence on the MCP:
terraform apply outside the equinix.dev shell after confirming.
Authoring Terraform from natural language
This is the canonical agent-driven flow:Mutation policy
The Fabric MCP exposes its mutation policy explicitly:equinix-dev or your agent. You can read the full policy at docs.equinix.com/equinix-api/mcp-servers/overview.
Skills bundle
The@equinix/agent-skills bundle teaches your AI runtime which MCP tool to call for which intent. Without the skills, an agent can still hit the MCP, but it’ll guess at tool selection. With the skills, the agent has structured guidance — “for ‘design a private AI path,’ call search_router first” — that lifts response quality immediately.
Install:
What the MCP doesn’t do
- It doesn’t run
terraform planorterraform applyfor you. You still hold the Terraform tooling. - It doesn’t store secrets.
EQUINIX_TOKENis per-request; the MCP never persists it. - It doesn’t talk to non-Equinix providers. AWS / Azure / GCP MCPs are separate products with their own endpoints.
Next
Recipes
Three full Use Cases — each comes with the MCP trace an agent walks through.
Safety model
The six controls that keep the MCP plan-only by default.