Documentation Index
Fetch the complete documentation index at: https://docs.equinix.dev/llms.txt
Use this file to discover all available pages before exploring further.
This quickstart uses the local Homebrew tap committed to the repo. The published tap shape (
brew install equinix/equinix/equinix-dev) is shown for reference but is not yet public.1. Install the CLI
Tap the local Homebrew formula
The tap is committed to the
homebrew-equinix/ directory. No upload, no public registry.2. Install the agent skills
The@equinix/agent-skills bundle teaches your AI runtime — Claude Code, Cursor, Codex, VS Code, or any MCP client — what the Equinix Fabric, Network Edge, and Agent Factory surfaces actually do. It’s a folder of SKILL.md + reference Markdown that maps user intent (“design a private AI path to Lambda in IAD”) to the right tools and policy.
Install the bundle
During private beta, install from the local repo path. Once published, the same install works from npm.
Three skills land in
~/.skills/equinix/ — equinix-fabric, equinix-network-edge, equinix-agent-factory.3. Connect an MCP client
The Fabric MCP server lives atmcp.equinix.com/fabric and exposes read-only tools (search_router, get_router_package, search_routes, …). Mutating tools are present in the schema but blocked by the gateway until human confirmation lands.
Pick your client:
mcp.equinix.com is the real Equinix-operated MCP gateway — see docs.equinix.com/equinix-api/mcp-servers/overview. The skills bundle and the equinix.dev CLI both target it.4. Add your first provider
Initialize a project
Project state is written to
.equinix-dev/ in the current directory. Move it between machines, agents, and CI without re-onboarding.A new
.equinix-dev/project.json is created with mode: plan_only and apply: blocked.Install the provider catalog
The catalog is a deterministic snapshot of every provider package — 52 in private beta. It installs offline.
Add your first package
equinix/fabric-cloud-router is the canonical first install. It maps to the official Terraform resource.The CLI writes
provider.json, terraform.json, mcp.json, and stages env keys into .env.local.Run the workflow
The full Discover · Plan · Preflight · Approve loop:equinix_fabric_create_*) are blocked by default and surface the
list of preflight gates that must pass first.
Apply remains blocked. Even with the CLI authenticated to a real Equinix tenant,
terraform apply requires explicit human approval after the readiness gates pass. See Safety model for the full set of guarantees.Next steps
Read the workflow
Understand each stage and what an agent can and cannot do.
Browse providers
52 packages organized by category. Each page has install, terraform, mcp, env, and readiness sections.
Open the workspace
The interactive console with KPI band, runbook, object inspector, and MCP request log.
Read the package anatomy
The six-file contract every provider exposes.