ignition-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ignition-mcpwhat alarms are currently active on the production line?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ignition-mcp
Documentation · Releases · Issues
A Model Context Protocol (MCP) server that gives AI assistants a curated, developer-oriented interface to the Ignition Gateway REST API.
Built on FastMCP with 37 hand-crafted tools covering gateway management, projects, resources, tag providers, tags, alarms, tag history, and script execution.
Tools
Category | Tools | Backend |
Gateway (6) |
| Native REST |
Projects (8) |
| Native REST |
Project Resources (4) |
| Native REST |
Designers (1) |
| Native REST |
Tag Providers (4) |
| Native REST |
Tag Browse (1) |
| Native REST |
Tag Values (2) |
| WebDev |
Tag Config (6) |
| WebDev |
Alarms (3) |
| WebDev |
Historian (1) |
| WebDev |
Script Execution (1) |
| WebDev |
Related MCP server: GoClaw MCP Server
Requirements
Python 3.10+
Ignition Gateway 8.3+ with REST API enabled
Gateway credentials (API key preferred) or basic auth
Setup
# Install
uv sync
# Configure
cp .env.example .env
# Edit .env with your gateway URL and credentialsEnvironment Variables
All environment variables are prefixed with IGNITION_MCP_:
Variable | Default | Description |
|
| Gateway base URL |
| (empty) | API key auth (preferred over basic auth) |
|
| Basic auth username |
|
| Basic auth password |
|
| Verify TLS certificates. For a private CA, set |
| (empty) | WebDev path for |
| (empty) | WebDev path for tag CRUD |
| (empty) | WebDev path for alarm tools |
| (empty) | WebDev path for |
| (empty) | WebDev path for |
|
| Set |
|
| MCP server bind host |
|
| MCP server port |
Running
# Streamable HTTP (default) — http://localhost:8007/mcp
uv run python mcp_server.py
# stdio transport (for Claude Desktop subprocess mode)
uv run python mcp_server.py --transport stdioClient configuration
For an HTTP MCP client, use http://127.0.0.1:8007/mcp after starting the server.
For a client that launches a stdio subprocess, use uv as the executable with these arguments:
["--directory", "/absolute/path/to/ignition-mcp", "run", "python", "mcp_server.py", "--transport", "stdio"]Replace the path with your checkout. See the quickstart for the first request and configuration for settings.
WebDev Prerequisite (tag values, alarms, history, script execution)
Several tools require WebDev module scripts deployed on the target Ignition gateway.
The native REST API (/data/api/v1/) only covers configuration — it does not support
runtime tag reads/writes, alarm queries, historian, or script execution.
Tools that require WebDev endpoints:
Tag values:
read_tags,write_tag→IGNITION_MCP_WEBDEV_TAG_ENDPOINTTag CRUD:
get_tag_config,create_tags,edit_tags,delete_tags,list_udt_types,get_udt_definition→IGNITION_MCP_WEBDEV_TAG_CONFIG_ENDPOINTAlarms:
get_active_alarms,get_alarm_history,acknowledge_alarms→IGNITION_MCP_WEBDEV_ALARM_ENDPOINTHistorian:
get_tag_history→IGNITION_MCP_WEBDEV_TAG_HISTORY_ENDPOINTScript execution:
run_gateway_script→IGNITION_MCP_WEBDEV_SCRIPT_EXEC_ENDPOINT+IGNITION_MCP_ENABLE_SCRIPT_EXECUTION=true
If a WebDev endpoint is not configured, the relevant tools return a clear error with setup instructions. See docs/webdev-setup.md for gateway-side deployment scripts.
Testing
# Unit tests (no live gateway needed)
uv run pytest tests/ -v
# Integration tests (requires running Ignition gateway)
RUN_LIVE_GATEWAY_TESTS=1 uv run pytest tests/test_integration.py -vArchitecture
mcp_server.py # FastMCP entry point, lifespan, arg parsing
src/ignition_mcp/
config.py # Pydantic Settings (IGNITION_MCP_ prefix)
ignition_client.py # Async HTTP client (httpx) for Gateway REST + WebDev
tools/
__init__.py # register_all(mcp) — calls each module
gateway.py # info, health, logs, connections, metrics
projects.py # project CRUD + export/import
resources.py # project resource CRUD (native REST)
designers.py # list_designers
tag_providers.py # tag provider CRUD
tags.py # browse + read/write + CRUD via WebDev
alarms.py # alarm query + ack (WebDev)
historian.py # tag history (WebDev)
execution.py # run_gateway_script (off by default)
tests/
conftest.py # Shared fixtures
test_client.py # IgnitionClient unit tests (mocked httpx)
test_tools.py # Tool logic unit tests (mocked client)
test_integration.py # Live gateway tests (skipped by default)
docs/
webdev-setup.md # WebDev script deployment guide
api-reference.md # Full tool referenceLicense
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
- mcp-serverOAuthcom.make
Give your AI agents the tools to build, manage, and run automation workflows.
Zero-setup MCP gateway securely connecting AI to your tools with authentication and workflows
Protocol-native energy infrastructure orchestration for AI data centers. Provides 46 MCP tools across 8 grid protocols (IEC-61850, DNP3, Modbus, OCPP, OpenADR, IEEE 2030.5, IEC 60870-5-104, ICCP) with 5 core API primitives: connect, dispatch, settle, comply, and intel. Enables AI agents to programmatically interact with substations, grid interfaces, and energy assets for real-time workload-grid coordination.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with Inductiveautomation's Ignition SCADA/MES platform through its REST API. Provides 45+ tools for gateway management, project operations, backup handling, log analysis, and license activation.35GPL 3.0
- FlicenseBqualityFmaintenanceEnables AI assistants to manage GoClaw AI gateway infrastructure through a comprehensive suite of 66 tools for managing agents, sessions, and configurations. It provides real-time gateway context and guided workflows with enterprise-grade security features like audit logging and secret scrubbing.6610-

@inscada/mcp-serverofficial
AlicenseAqualityDmaintenanceEnables AI assistants to interact with inSCADA systems via the Model Context Protocol, providing 39 tools for live data, alarms, scripts, historical analysis, charts, and more.3941 npmMIT- AlicenseAqualityCmaintenanceThe first AI-powered development tool for Ignition SCADA — an MCP server that lets any AI agent read, understand, and interact with your Ignition projects and gateways.1710MIT