Skip to content

2026

Nautobot MCP Server

Your AI assistant is great at writing Python and explaining configs, but it has no idea what is actually in your network. It cannot tell you which devices live in a given site, what prefixes are free, or which circuit terminates where. That knowledge lives in your source of truth.

The Model Context Protocol (MCP) is the missing link. The nautobot-mcp-server exposes Nautobot's built-in REST and GraphQL APIs as tools that LLM clients such as Claude Desktop and Cursor can call directly, so the assistant answers from your real data instead of guessing.

Writing Python Functions for Humans and AI

Auto-generated docstring example from Python code

Why is my AI / LLM not constructing my Python program or documentation correctly?

Most Python functions are written once and read many times. The reader used to be a coworker, your future self, or a reviewer. Today there is a new reader: the AI tools you use to explain, check, refactor, and extend your code.

Good docstrings and type hints were always worth the effort. Now they pay off twice: a well-described function is easier for a human to trust and gives an AI assistant the context it needs to make correct changes instead of guessing.

Nautobot Digital Twin

Nautobot to containerlab topology flow

Your network exists twice: once in production, and once in Nautobot as the source of truth. What is usually missing is a third copy, a place where you can actually run the topology, push a config change, and watch what happens before it touches real hardware.

The Nautobot Digital Twin app builds that third copy on demand. It reads your Location, Device, Interface, and Cable data, generates a lab topology, and spins up a disposable environment on your chosen backend (containerlab or EVE-NG), all from a Nautobot job or a button on the Location page. When you are done, it tears the lab back down, and it can even clean up after itself on a timer.