ACI MCP Server
A Model Context Protocol server that lets AI clients read and configure a live Cisco ACI fabric via the APIC REST API, with confirmation required for state changes and built-in safety checks.
README
ACI MCP Server
A Model Context Protocol (MCP) server that gives Claude (or any MCP-compatible AI client) natural-language tools to read and configure a live Cisco ACI fabric through the APIC REST API — with confirmation required before any state-changing action, and structural safety checks that can't be bypassed by confirmation alone.
Built and tested against Cisco's free DevNet "ACI Simulator Always-On" sandbox. Full build write-up: (link to HackerNoon article here once published).
Why this exists
Most AI assistants can explain Cisco ACI's object model. This gives Claude the ability to actually operate one — read fabric state, build a real Tenant → Application Profile → EPG → Bridge Domain → VRF hierarchy, apply contracts between EPGs, and audit the result — through conversation, with every write gated behind explicit confirmation.
Features
- 15 tools spanning fabric visibility, tenant/application management, the full ACI object hierarchy, and policy enforcement via contracts
- Dry-run by default — every state-changing tool describes what it
would do and requires a second call with
confirm=Trueto actually apply it - Unconditional guardrails where they matter —
delete_tenantrefuses to touchcommon,infra, ormgmtregardless ofconfirm - Pre-flight dependency checks —
create_bridge_domainandapply_contractverify their target VRF/contract actually exists before creating a reference to it, rather than silently accepting a dangling one (see CHANGELOG.md for the real bug this fixed) - A structural audit tool, not just a lister —
get_tenant_detailwalks an entire tenant's object tree in one call and flags anything incomplete
Tool reference
| Tool | Type | Description |
|---|---|---|
list_tenants |
Read | List every tenant on the fabric |
get_fabric_health |
Read | Fabric-wide health score |
get_faults |
Read | Active faults filtered by severity |
get_port_config |
Read | EPG static binding + AAEP for a pod/node/interface |
get_tenant_detail |
Read | Full-subtree audit of a tenant, flags incomplete objects |
create_tenant |
Write | Create a tenant |
delete_tenant |
Write | Delete a tenant — hard-refuses common/infra/mgmt |
create_application_profile |
Write | Create an AP inside a tenant |
create_epg |
Write | Create an EPG inside an AP, optional BD binding |
create_bridge_domain |
Write | Create a BD with a VRF (pre-flight checked) |
associate_epg_bridge_domain |
Write | Bind an existing EPG to an existing BD |
create_vrf |
Write | Create a VRF (Context) inside a tenant |
create_contract |
Write | Create a contract + filter, optional port restriction |
apply_contract |
Write | Apply a contract between provider and consumer EPGs (pre-flight checked) |
add_static_path_binding |
Write | Bind an EPG to a physical port with a VLAN |
All Write tools require confirm=True to actually execute; called
without it, they return a description of the intended change instead.
Requirements
- Python 3.10+ (the
mcpSDK requires it — 3.9 will fail to install it) - Access to an APIC controller (a free DevNet sandbox works fine — get current credentials at devnetsandbox.cisco.com, search "ACI Simulator")
- An MCP-compatible client (Claude Code, Claude Desktop, etc.)
Setup
git clone https://github.com/<your-username>/aci-mcp-server.git
cd aci-mcp-server
pip install -r requirements.txt
cp .env.example .env
# edit .env with your real APIC_URL / APIC_USER / APIC_PASSWORD
Sanity check before wiring in an AI client — confirm the server starts cleanly on its own:
python3 aci_mcp_server.py
It should hang silently (waiting on stdio) with no traceback — that's
success. Ctrl+C to stop.
Registering with Claude Code
claude mcp add aci-lab --scope user -- python3 /full/path/to/aci_mcp_server.py
If your APIC/environment is only reachable from a remote host (e.g. behind SSH, or inside a container), pass credentials explicitly and route through that instead:
claude mcp add aci-lab --scope user -- ssh user@host docker exec -i \
-e APIC_URL=https://your-apic \
-e APIC_USER=admin \
-e "APIC_PASSWORD=your-password" \
container-name python3 /path/in/container/aci_mcp_server.py
Start a fresh Claude Code session, run /mcp to confirm aci-lab shows
connected with 15 tools, then try:
"List all tenants"
"Check fabric health"
A worked example
docs/testcase_app_to_db.md walks through a
complete test case: building a fresh tenant from nothing — VRF, two Bridge
Domains, an Application Profile, an App-tier EPG and a DB-tier EPG — then
applying a contract that permits only TCP/5432 between them, with the DB
tier correctly configured as the provider and the App tier as the
consumer.
Design notes
- MCP is a protocol, not an AI feature. This server works unmodified with any MCP-compatible client — Claude, ChatGPT via its Agents SDK, Gemini, or a local model — since nothing in the code is Claude-specific.
- The dry-run/confirm pattern is enforced in code, not by the model's
judgment. A write tool called without
confirm=Truecannot reach APIC — the check happens before any network call, not after. - Not every guardrail is the same strength on purpose. Most writes are
soft-gated (confirm and proceed); deleting a system tenant is hard-gated
(no confirmation path exists at all). See
delete_tenant.
Security
.envis git-ignored — never commit real credentials.- This is built and tested against a free, shared DevNet sandbox. If you point this at a production APIC, review the credential-handling pattern first — storing a real password as a plaintext environment variable passed on a command line (as shown in the SSH example above) is acceptable for a lab, not for production. Use a proper secrets manager instead.
License
Author
Built by Real Paul — network automation engineer, NetDevOps. More at GitHub and HackerNoon.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.