io.github.Inflectra/mcp-server-spira
平台与服务by inflectra
一个 Model Context Protocol(MCP)服务器,使 AI 助手能够与 Inflectra 的 Spira 平台进行交互操作。
什么是 io.github.Inflectra/mcp-server-spira?
一个 Model Context Protocol(MCP)服务器,使 AI 助手能够与 Inflectra 的 Spira 平台进行交互操作。
README
MCP Inflectra Spira Server
A Model Context Protocol (MCP) server enabling AI assistants to interact with Spira by Inflectra.
Overview
This project implements a Model Context Protocol (MCP) server that allows AI assistants (like Claude) to interact with the Inflectra Spira platform, providing a bridge between natural language interactions and the Spira REST API.
This server supports all three editions of Spira:
- SpiraTest: Test Management When You Need Quality, Agility & Speed
- SpiraTeam: Project, Requirements Management & ALM For Agile Teams
- SpiraPlan: Program Management & ALM For Scaling Agile & Enterprises
Features
The Spira MCP server current implements the following features:
My Work
This feature provides easy access to the list of artifacts that have been assigned to the current user
- My Tasks: Provides operations for working with the Spira tasks I have been assigned
- My Requirements: Provides operations for working with the Spira requirements I have been assigned
- My Incidents: Provides operations for working with the Spira incidents I have been assigned
- My Test Cases: Provides operations for working with the Spira test cases I have been assigned
- My Test Sets: Provides operations for working with the Spira test sets I have been assigned
Workspaces
This feature provides tools that let you retrieve and modify the different workspaces inside Spira
- Programs: Provides operations for working with Spira programs
- Products: Provides operations for working with Spira products
- Product Templates: Provides operations for working with Spira product templates
Program Artifacts
This feature provides tools that let you retrieve and modify the different artifacts inside a Spira program
- Capabilities: Provides operations for working with the Spira capabilities in a program backlog
- Milestones: Provides operations for working with the Spira milestones in a program
Product Artifacts
This feature provides tools that let you retrieve and modify the different artifacts inside a Spira product
- Requirements: Provides operations for working with the Spira requirements in a product
- Releases: Provides operations for working with the Spira releases in a product
- Test Cases: Provides operations for working with the Spira test case folders and test cases in a product
- Test Sets: Provides operations for working with the Spira test set folders and test sets in a product
- Test Runs: Provides operations for working with the Spira test runs in a product
- Tasks: Provides operations for working with the Spira tasks in a product
- Incidents: Provides operations for working with the Spira incidents (e.g. bugs, enhancements, issues, etc.) in a product
- Automation Hosts: Provides operations for working with the Spira automation hosts in a product
Template Configuration
This feature provides tools that let you view and modify the configuration and settings of Spira product templates
- Artifact Types: Retrieves information on the artifact types in a product template, and their sub-types
- Custom Properties: Retrieves information on the artifact types in a product template, and their custom properties
Automation
This feature provides tools that let you integrate automated DevOps tools such as test automation frameworks and CI/CD pipelines
- Automated Test Runs: Provides operations for recording automated test run results into Spira
- Builds: Provides operations for recording the results of CI/CD builds into Spira
Specifications
Provides operations for retrieving the product specification files that can be used to build the functionality of the product using AI. This is used by Agentic AI development tools such as Amazon Kiro for building applications from a formal spec.
This module provides the following MCP tools for retrieving the entire product specifications:
- get_specification_requirements - returns the data for populating the
requirements.mdfile - get_specification_design - returns the data for populating the
design.mdfile - get_specification_tasks - returns the data for populating the
tasks.mdfile - get_specification_test_cases - returns the data for populating the
test-cases.mdfile
Getting Started
Prerequisites
- Python 3.10+
- Inflectra Spira cloud account with appropriate permissions
- Username and active API Key (RSS Token) for this instance
Installation
# Clone the repository
git clone https://github.com/Inflectra/mcp-server-spira.git
cd mcp-server-spira
# Simple development mode install
pip install -e .
# Install into a virtual development environment (you may need to create one with uv venv)
uv pip install -e ".[dev]"
# Install from PyPi
pip install mcp-server-spira
Configuration
Create a .env file in the project root with the following variables:
INFLECTRA_SPIRA_BASE_URL=The base URL for your instance of Spira (typically https://mycompany.spiraservice.net or https://demo-xx.spiraservice.net/mycompany)
INFLECTRA_SPIRA_USERNAME=The login name you use to access Spira
INFLECTRA_SPIRA_API_KEY=The API Key (RSS Token) you use to access the Spira REST API
Note: Make sure your API Key is active and saved in your Spira user profile.
Running the Server directly
# Development mode with the MCP Inspector
mcp dev src/mcp_server_spira/server.py
# Production mode using shell / command line
python -m mcp_server_spira
# Install in Claude Desktop
mcp install src/mcp_server_spira/server.py --name "Inflectra Spira Server"
Running the MCP Server from Cline
To run the MCP server from within Cline, you don't use the commands above, instead you add the Inflectra MCP server to the configuration JSON file cline_mcp_settings.json:
{
"mcpServers": {
"inflectra-spira": {
"autoApprove": [
"get_my_incidents",
"get_products",
"get_test_cases"
],
"timeout": 60,
"command": "uv",
"args": [
"--directory",
"C:\\Git\\mcp-server-spira",
"run",
"main.py"
],
"env": {
"INFLECTRA_SPIRA_BASE_URL": "https://mycompany.spiraservice.net",
"INFLECTRA_SPIRA_USERNAME": "login",
"INFLECTRA_SPIRA_API_KEY": "{XXXXXX-XXXXXXX-XXXXXXX-XXXXXXX-XXXXX}"
},
"type": "stdio"
}
}
}
Running the MCP Server from Kiro
To run the MCP server from within Kiro, you don't use the commands above, instead you add the Inflectra MCP server to the configuration JSON file mcp.json:
{
"mcpServers": {
"inflectra-spira": {
"command": "uv",
"args": [
"--directory",
"C:\\Git\\mcp-server-spira",
"run",
"main.py"
],
"env": {
"INFLECTRA_SPIRA_BASE_URL": "https://myinstance.spiraservice.net",
"INFLECTRA_SPIRA_USERNAME": "mylogin",
"INFLECTRA_SPIRA_API_KEY": "{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXX}"
},
"disabled": false,
"autoApprove": [
"get_specification_requirements",
"get_specification_design",
"get_specification_tasks",
"get_specification_test_cases"
]
}
}
}
Usage Examples
Get Assigned Artifacts
Get me my assigned tasks in Spira/
Get me my assigned requirements in Spira/
View Project Structure
List all projects in my organization and show me the iterations for the Development team
Development
The project is structured into feature modules, each implementing specific Inflectra Spira capabilities:
features/mywork: Accessing a user's assigned artifacts and updating their status/progressfeatures/projects: Project management capabilitiesfeatures/programs: Program management featuresutils: Common utilities and client initialization
For more information on development, see the CLAUDE.md file.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- Built with MCP Python SDK
- Uses Inflectra Spira v7.0 REST API
常见问题
io.github.Inflectra/mcp-server-spira 是什么?
一个 Model Context Protocol(MCP)服务器,使 AI 助手能够与 Inflectra 的 Spira 平台进行交互操作。
相关 Skills
MCP构建
by anthropics
聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。
✎ 想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。
Slack动图
by anthropics
面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。
✎ 帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。
邮件模板
by alirezarezvani
快速搭建生产可用的事务邮件系统:生成 React Email/MJML 模板,接入 Resend、Postmark、SendGrid 或 AWS SES,并支持本地预览、i18n、暗色模式、反垃圾优化与追踪埋点。
✎ 面向营销与服务场景,快速搭建高质量邮件模板,省去反复设计与切图成本,成熟度和社区认可都很高。
相关 MCP Server
Slack 消息
编辑精选by Anthropic
Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。
✎ 这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。
by netdata
io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。
✎ 这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。
by d4vinci
Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。
✎ 这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。