A
securityA
licenseA
qualityA Model Context Protocol server for interacting with Redmine using its REST API, enabling the management of tickets, projects, and user data through integration with LLMs.
Last updated -
23
1
TypeScript
MIT License
Allows you to interact with your Redmine projects and issues through the Cline VS Code extension, including reading project details and creating new issues.
这是一个与 Redmine 集成的自定义 MCP(模型上下文协议)服务器,允许您通过 Cline VS Code 扩展与您的 Redmine 项目和问题进行交互。
.env
文件并添加以下内容,用实际的 Redmine 主机名和 API 密钥替换占位符:.env
文件提交到版本控制!该文件包含敏感信息。此仓库中包含的.gitignore
文件应该会阻止其被提交。cline_mcp_settings.json
文件。mcpServers
对象,将args
路径替换为系统上server.js
文件的绝对路径:\\
)。cline_mcp_settings.json
文件。Cline 会自动检测更改并启动服务器。redmine://projects/{project_id}
:**此资源代表一个 Redmine 项目。请将{project_id}
替换为您 Redmine 实例中项目的实际 ID。您可以使用 Cline 中的access_mcp_resource
工具读取项目详情。例如:(将123
替换为有效的项目 ID)。这将以 JSON 格式返回项目详细信息。
create_issue
:**此工具允许您在 Redmine 中创建新问题。它采用以下参数:project_id
(字符串,必需):应创建问题的项目的 ID。subject
(字符串,必需):问题的主题。description
(字符串,必需):问题的描述。您可以使用 Cline 中的use_mcp_tool
工具来调用此工具。例如:
(将456
替换为有效的项目 ID)。这将在指定项目中创建一个新问题,并以 JSON 格式返回问题详细信息。
REDMINE_HOST
和REDMINE_API_KEY
环境变量已正确设置。此外,请确保您的 Redmine 实例可以从您的计算机访问。You must be authenticated.
local-only server
The server can only run on the client's local machine because it depends on local resources.
通过 Cline VS Code 扩展实现与 Redmine 项目和问题的交互,支持通过模型上下文协议进行项目管理和问题创建。