Spira 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., "@Spira MCPRun incident digest for status Open, owner me"
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.
Spira MCP
Read-only Cursor MCP for daily Spira incident reviews against
https://<OrgID>.spiraservice.net.
What it does
incident_daily_digest— markdown digest of incidents filtered by product, status, owner, detected release, and optional incident IDs; includes description, last N comments, and attachment metadata (AttachmentIds)list_incident_filter_options— statuses, owners, and releases for picking filter labelslist_incident_attachments— list documents on a single incidentdownload_incident_attachment— download a file attachment into a local cache directory and return the absolute path (for agentRead/ vision); URL attachments return the URL without writing a file
No create/update/delete/upload tools. Local filesystem writes are limited to the attachment cache.
Related MCP server: Swarmia MCP Server
Install
pip install -e ".[dev]"
pytestCursor MCP config
Add to %USERPROFILE%\.cursor\mcp.json (fill in org URL, username + RSS token):
{
"mcpServers": {
"spira": {
"command": "C:\\Program Files\\Python311\\python.exe",
"args": ["-m", "spira_mcp"],
"env": {
"INFLECTRA_SPIRA_BASE_URL": "https://<OrgID>.spiraservice.net",
"INFLECTRA_SPIRA_USERNAME": "YOUR_LOGIN",
"INFLECTRA_SPIRA_API_KEY": "{YOUR-RSS-TOKEN}",
"SPIRA_COMMENT_LIMIT": "5",
"SPIRA_MAX_INCIDENTS": "50",
"SPIRA_ATTACHMENT_MAX_BYTES": "5242880",
"SPIRA_ATTACHMENT_ALLOW_LARGE_FS": "false"
}
}
}
}Optional:
"SPIRA_PRODUCT_ID": "123"(numeric only) or"SPIRA_PRODUCT_NAME": "My Product"for a default product"SPIRA_ATTACHMENT_CACHE_DIR": "D:\\spira-cache"— override cache root (default:{cwd}/.spira-attachments, gitignored)"SPIRA_ATTACHMENT_MAX_BYTES": "5242880"— soft metadata gate and hard stream ceiling (default 5 MiB)"SPIRA_ATTACHMENT_ALLOW_LARGE_FS": "true"— allow writing attachments larger than the soft cap (disables the hard stream ceiling)
Restart Cursor MCP (or reload) after saving.
Example prompts
“Run an incident digest for status Open, owner me, detected release 25.7”
“Digest incident IDs 1201, 1205 for our default product”
“Show filter options for the default Spira product”
“List attachments on incident 1201, then download attachment 88 and summarize the screenshot”
Design
See docs/superpowers/specs/2026-07-28-incident-daily-digest-design.md.
This server cannot be deployed
Maintenance
Related MCP Connectors
Read-only MCP connector for Facehunch saved reports, access status and available source links.
Read-only access to InfluSense influencer discovery, ratings, watchlists, and reports via MCP.
Provide seamless access to Appfolio Property Manager Reporting API through a standardized MCP serv…
An MCP server that provides access to Testiny projects, test cases and test runs
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceRead-only MCP server for querying Movidesk tickets through the public Movidesk API.6 npm-
- AlicenseNot gradedqualityDmaintenanceEnables querying Swarmia's Export API for engineering metrics including pull request analytics, DORA metrics, investment balance, and effort reporting through an MCP interface.8MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for investigating cloud incidents and managing approvals. Provides read-only tools to list incidents, investigate incidents, and list approvals, keeping remediation behind human approval.MIT
- FlicenseNot gradedqualityCmaintenanceRead-only MCP server providing Microsoft 365 service health status and known incident/outage information from Microsoft Graph. Enables quick answers to whether an issue is a widespread Microsoft outage or specific to a tenant.-