Flashduty MCP Server is built on the go-flashduty SDK; every tool is a thin wrapper over the Flashduty Open API.
Use cases
Automate incident workflows
Hand incident creation, acknowledgment, and closure in Flashduty over to AI orchestration, wired into your operations workflow.
Data extraction & analysis
Let an LLM retrieve incidents, alerts, and change records by time range, status, severity, and other criteria, and summarize them.
Build AI ops tools
Call Flashduty capabilities from your own AI apps to build intelligent on-call, incident retrospectives, and more.
Template validation & debugging
Validate rendering and query available variables and functions in real time while editing notification templates.
Deployment
Flashduty MCP Server offers three deployment modes; choose based on your MCP client’s capabilities and your runtime environment.
- Remote service (recommended)
- Docker
- Build from source
No local installation needed — connect directly to the official remote instance
https://mcp.flashcat.cloud/mcp, authenticating with your APP Key via Authorization: Bearer. This is the fastest way to get started.For Cursor, add to your MCP configuration:The remote service supports only Streamable HTTP transport (
POST /mcp). Check your MCP client’s documentation for the exact syntax and location of remote MCP service configuration.Authentication and transport
Configuration
Flashduty MCP Server supports toolset trimming, read-only mode, output format, and other settings to suit different scenarios. Local deployments are configured via environment variables or command-line flags; the remote service is configured dynamically by appending query parameters to the URL.
Environment variables
| Field | Default | Description |
|---|---|---|
FLASHDUTY_APP_KEY | - | Flashduty APP Key (required). |
FLASHDUTY_TOOLSETS | all toolsets | Comma-separated list of enabled toolsets (e.g. incidents,users,channels); use all to enable everything. |
FLASHDUTY_READ_ONLY | false | Enable read-only mode (1 or true), keeping only query tools and forbidding any write operations. |
FLASHDUTY_OUTPUT_FORMAT | json | Tool result output format, either json or toon. |
FLASHDUTY_BASE_URL | https://api.flashcat.cloud | Base URL of the Flashduty API. |
Command-line flags
When building from source and running the binary directly, you can use the following flags (which take precedence over the env vars of the same name):--app-key: Flashduty APP Key (equivalent toFLASHDUTY_APP_KEY).--toolsets: comma-separated list of enabled toolsets.--read-only: enable read-only mode.--output-format: tool result output format (jsonortoon).--base-url: base URL of the Flashduty API.
Remote service configuration
When using the official remote instance, append query parameters to the URL to configure toolsets and read-only mode dynamically:Output format (TOON)
The server supports outputting tool results in TOON (Token-Oriented Object Notation) format. For arrays of objects with uniform fields (such as member lists or incident lists), TOON can cut token usage by 30%–50% compared with JSON, and modern LLMs can parse it directly. SetFLASHDUTY_OUTPUT_FORMAT=toon (or --output-format toon) to enable it.
Toolsets and tools
The server provides 8 toolsets and 23 tools in total, all enabled by default. The table below summarizes each toolset:
Toolset names (
incidents, status_page, etc.) are internal program identifiers; keep them in English when configuring.incidents — incident lifecycle management (8 tools)
incidents — incident lifecycle management (8 tools)
query_incidents parameter referencesince / until time-window behavior- Both omitted: defaults to the last 30 days (convenient for querying current/open incidents).
- Only
sinceprovided: queries from that time through the current moment. - Only
untilprovided: not allowed — returns an error (sinceis required whenuntilis set; omit both to use the 30-day default). - Both provided: queries the specified range; the backend hard-caps the span at ~30 days.
since and until:- Relative duration:
30d,24h,168h(meaning “this far before now”) - RFC3339 with timezone:
2026-04-01T10:00:00+08:00or2026-04-01T10:00:00Z(SDK-emitted timestamps can be passed back directly as filter bounds) - Date:
2026-04-01(parsed as local midnight) - Datetime:
2026-04-01 10:00:00or2026-04-01T10:00:00(local time) - Unix timestamp:
1712000000
status_page — status page management (4 tools)
status_page — status page management (4 tools)
templates — notification templates (4 tools)
templates — notification templates (4 tools)
users — member and team queries (2 tools)
users — member and team queries (2 tools)
channels — channels and escalation rules (2 tools)
channels — channels and escalation rules (2 tools)
alerts — alert event query (1 tool)
alerts — alert event query (1 tool)
changes — change record query (1 tool)
changes — change record query (1 tool)
fields — custom fields (1 tool)
fields — custom fields (1 tool)
Related resources
go-flashduty SDK
The Go SDK that MCP Server depends on, covering the entire Flashduty Open API.
GitHub repository
Browse the source, releases, and issue tracker.