FortiGate MCP Server

FortiGate MCP Server

Enables AI assistants to manage FortiGate firewalls from bootstrap to production, with safe preview/apply changes and secure credential handling. Covers inventory, VDOMs, interfaces, routing, firewall policies, VPN, security analysis, and documentation generation.

Category
Visit Server

README

<p align="center"> <img src="https://img.shields.io/badge/FortiGate-MCP%20Server-blue?style=for-the-badge&logo=fortinet&logoColor=white" alt="FortiGate MCP Server"/> </p>

<h1 align="center">FortiGate MCP Server</h1>

<p align="center"> <strong>Take a FortiGate from out-of-the-box to fully configured through Claude (or any MCP client) -- safely, with every change previewed before it's applied.</strong> </p>

<p align="center"> <img src="https://img.shields.io/badge/python-3.12+-3776AB?style=flat-square&logo=python&logoColor=white" alt="Python 3.12+"/> <img src="https://img.shields.io/badge/MCP-1.0-green?style=flat-square" alt="MCP 1.0"/> <img src="https://img.shields.io/badge/tools-115-brightgreen?style=flat-square" alt="115 tools"/> <img src="https://img.shields.io/badge/tests-548%20passing-brightgreen?style=flat-square" alt="Tests"/> <img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="MIT License"/> </p>

<p align="center"> <a href="#overview">Overview</a> • <a href="#features">Features</a> • <a href="docs/INSTALLATION.md">Installation</a> • <a href="docs/USAGE.md">Usage</a> • <a href="docs/TOOLS.md">Tool Reference</a> • <a href="#architecture">Architecture</a> • <a href="#security-model">Security</a> • <a href="#known-limitations">Limitations</a> </p>


Overview

This is an MCP (Model Context Protocol) server that lets an AI assistant manage FortiGate firewalls -- from a single lab device to a multi-tenant estate of dozens of customers, sites, and clusters.

It's built around three ideas that most FortiGate automation tooling doesn't have all three of at once:

  1. Nothing mutates without a preview. Every create/update/delete call returns a diff and a change_id instead of executing immediately. A separate change_apply call is what actually runs it, and it re-checks the live state for drift before doing so. There is no single-shot "just do it" mode, even for trusted automation.
  2. Claude never sees a real credential. Device passwords/API tokens are provisioned through a local, non-MCP CLI (fortinet-mcp-cred) straight into your OS credential store (Windows Credential Manager / macOS Keychain / Linux Secret Service). The MCP tool surface only ever handles an opaque credential_id.
  3. It covers the whole lifecycle, not just policy CRUD. Device bootstrap (DNS/NTP/syslog/SNMP/admin/HA), VDOM multi-tenancy, interfaces/zones/DHCP, routing, firewall policy, VPN (IPsec + SSL), security/compliance analysis, and documentation generation are all first-class tool namespaces -- see the full Tool Reference (115 tools).

Features

Domain What you get
Inventory & multi-tenancy Customer -> Site -> Device -> VDOM hierarchy in a local SQLite store. Resolve a device by name, site, customer, or IP -- never by typing an IP into a prompt.
Device bootstrap DNS, NTP, syslog, SNMP (sysinfo + v1/v2c communities), global settings (hostname/timezone/admin ports), local admin accounts, HA -- everything needed to take a device from factory defaults to production-ready.
VDOM lifecycle Create/delete VDOMs, create/delete inter-VDOM links.
Network topology Interfaces (VLAN sub-interfaces, loopbacks, vdom-link members), zones, DHCP servers, static routes.
Firewall & NAT Policies, address/service objects, virtual IPs -- full CRUD.
VPN IPsec site-to-site tunnels (phase1/phase2) with live status; SSL VPN visibility.
Change safety READ_ONLY / SAFE / FULL operating modes, preview -> apply -> rollback for every mutation, drift detection at apply time.
Analysis & compliance Duplicate/shadowed/any-any policy detection, unused object detection, subnet overlap, best-practice checks (policy and system config), a heuristic 0-100 security score, a combined compliance report.
Documentation generation Topology diagrams (Mermaid/drawio/PlantUML), policy/routing/VPN/system-config Markdown docs, a combined export.
Fleet operations Compare devices, search for an object across the whole estate, sync objects, replicate config, fleet-wide reports.
Natural-language intents Composite tools (intent_create_policy, intent_explain_policy_failure, ...) that resolve fuzzy names and compose the primitives above.

See docs/TOOLS.md for the complete, generated list of all 115 tools.

Quick Start

git clone https://github.com/Serrinho02/fortigate-mcp-server.git
cd fortigate-mcp-server
uv sync

Create a minimal config/config.json (the legacy single-file device list is optional once you're using the inventory system below -- see Installation):

{ "fortigate": { "devices": {} } }

Point your MCP client (e.g. Claude Desktop) at the server:

{
  "mcpServers": {
    "fortigate": {
      "command": "/absolute/path/to/fortigate-mcp-server/.venv/bin/python",
      "args": ["-m", "src.fortigate_mcp.server"],
      "env": {
        "FORTIGATE_MCP_CONFIG": "/absolute/path/to/fortigate-mcp-server/config/config.json",
        "FORTINET_MCP_MODE": "full"
      }
    }
  }
}

Then, from Claude: register a device (inventory_register_device_pending), provision its credential locally with fortinet-mcp-cred set <credential_id>, and call get_device_status. Full walkthrough, Windows paths, and Docker instructions: docs/INSTALLATION.md. Concept guide and worked examples: docs/USAGE.md.

Architecture

Seven layers, dependency flows one direction only:

flowchart TB
    Transport["MCP Tool Layer -- inventory.*, connection.*, policy/network/routing/vip.*, vpn.*, system.*, vdom.*, analysis.*, doc.*, fleet.*, intent.*, change.*"]
    Services["Service Layer -- one Service per capability, mode enforcement, error translation"]
    Domain["Domain / Analysis Engines -- pure functions: DiffEngine, policy analyzers, scoring"]
    Repo["Repository Layer -- inventory/change/snapshot persistence"]
    Adapters["Vendor Adapter Layer -- FortinetProductAdapter Protocol (the plugin boundary)"]
    Clients["Vendor API Client -- FortiOSRestClient (httpx, persistent per-device connection)"]
    Infra["Infra -- ConnectionManager, CredentialManager (keyring), SQLite/SQLAlchemy"]

    Transport --> Services
    Services --> Domain
    Services --> Repo
    Domain --> Repo
    Repo --> Adapters
    Adapters --> Clients
    Services -.uses.-> Infra

FortinetProductAdapter is the only extensibility boundary: today FortiOSAdapter is the sole implementation, but adding another Fortinet product means writing one new adapter against the same Protocol -- nothing above that layer changes.

Operating Modes

Set via FORTINET_MCP_MODE (default full):

Mode Behavior
read_only No mutation may even be previewed.
safe Delete operations are rejected; create/update still require preview -> apply.
full Every operation is allowed, but still requires preview -> apply -- there is no single-shot fast path in any mode.

Security Model

  • Device credentials are never a tool argument and never appear in a conversation. inventory_register_device_pending only collects metadata (host, name, customer, site) and mints an opaque credential_id; the actual secret is entered once, locally, via fortinet-mcp-cred set <credential_id>, straight into the OS credential store.
  • connection_connect / any tool needing a live session will fail with a clear "credential not provisioned" error until that CLI step is done -- there's no fallback path that lets a secret flow through MCP.
  • Two documented exceptions, both flagged directly in their tool descriptions: an IPsec tunnel's PSK (vpn_create_ipsec_tunnel) and a local admin account's password (system_create_admin) are normal tool arguments, because FortiOS itself never returns them on GET -- there is no way to preview/diff them without the value passing through the call once.

Known Limitations

  • No declarative "apply this desired state" tool. By design -- Claude composes the granular tools itself (see intent.* for the pattern), rather than this server owning a Terraform/Ansible-style apply engine.
  • Docker + headless Linux: the credential manager wraps the OS keyring library. On a container/headless Linux host with no Secret Service daemon, you need the keyrings.cryptfile fallback (not wired up by default) -- see docs/INSTALLATION.md. Native install on Windows/macOS/desktop Linux works out of the box.
  • SNMP: only v1/v2c communities are supported; no SNMPv3 users yet.
  • No FortiManager/FortiWeb/other Fortinet product adapters yet -- the adapter Protocol supports it, nothing is implemented beyond FortiOS.
  • Verified end-to-end with real HTTP traffic captured against a mocked FortiOS REST API; if you hit a real-device quirk, please open an issue with the FortiOS version and endpoint.

Testing

uv run pytest

548 tests, no external dependencies required (device interaction is mocked at the HTTP transport layer for the full suite).

Contributing

Issues and PRs welcome. If you're adding a new resource type, look at how the VPN or system-configuration domains were added (services/vpn_service.py, services/system_service.py, services/change_dispatch.py) -- every new mutating resource follows the same adapter -> change_dispatch -> service -> MCP tool pattern.

Author

Built and maintained by Nicola Serra.

License

MIT -- see LICENSE.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured