Redmine MCP Server for Cline
Cline용 Redmine MCP 서버
이는 Redmine과 통합된 맞춤형 MCP(Model Context Protocol) 서버로, Cline VS Code 확장 기능을 통해 Redmine 프로젝트와 이슈와 상호 작용할 수 있습니다.
필수 조건
Node.js: 시스템에 Node.js(버전 18 이상)가 설치되어 있어야 합니다.
Redmine 인스턴스: REST API가 활성화된 실행 중인 Redmine 인스턴스가 필요합니다.
Redmine API 키: Redmine 사용자 계정의 API 키가 필요합니다. Redmine 계정 설정(일반적으로 "내 계정" -> "API 액세스 키" 아래)에서 찾을 수 있습니다.
클라인: 클라인 VS 코드 확장 프로그램을 설치하고 구성해야 합니다.
Related MCP server: Redmine MCP Server
설치
저장소를 복제합니다.
지엑스피1
종속성 설치:
npm install
구성
환경 변수 설정: 프로젝트 디렉토리의 루트에
.env파일을 만들고 다음을 추가합니다. 이때 플레이스홀더를 실제 Redmine 호스트 이름과 API 키로 바꿉니다.REDMINE_HOST=your-redmine-host.com REDMINE_API_KEY=your-redmine-api-key중요:
.env파일을 버전 관리 시스템에 커밋하지 마세요! 민감한 정보가 포함되어 있습니다. 이 저장소에 포함된.gitignore파일이 커밋을 방지합니다.
클라인에 추가
Cline 설정 열기: VS Code에서 Cline 확장 프로그램을 열고 MCP 서버 탭으로 이동합니다.
MCP 설정 편집: "MCP 설정 편집"을 클릭하여
cline_mcp_settings.json파일을 엽니다.서버를 추가합니다.
mcpServers개체에 다음 항목을 추가하고args경로를 시스템의server.js파일에 대한 절대 경로로 바꿉니다.{ "mcpServers": { "redmine-server": { "command": "node", "args": ["C:\\Users\\yourusername\\path\\to\\Redmine-MCP\\server.js"], "disabled": false, "autoApprove": [] } } }중요: Windows에서는 경로에 반드시 두 개의 백슬래시(
\\)를 사용하세요.저장:
cline_mcp_settings.json파일을 저장합니다. Cline이 자동으로 변경 사항을 감지하고 서버를 시작합니다.
사용 가능한 리소스 및 도구
자원
redmine://projects/{project_id}: 이 리소스는 Redmine 프로젝트를 나타냅니다.{project_id}Redmine 인스턴스에 있는 프로젝트의 실제 ID로 바꾸세요. Cline의access_mcp_resource도구를 사용하여 프로젝트 세부 정보를 읽을 수 있습니다. 예:<access_mcp_resource> <server_name>redmine-server</server_name> <uri>redmine://projects/123</uri> </access_mcp_resource>
( 123 유효한 프로젝트 ID로 바꾸세요.) 그러면 프로젝트 세부 정보가 JSON으로 반환됩니다.
도구
create_issue: 이 도구를 사용하면 Redmine에서 새 이슈를 생성할 수 있습니다. 다음 매개변수를 사용합니다.project_id(문자열, 필수): 문제가 생성되어야 하는 프로젝트의 ID입니다.subject(문자열, 필수): 문제의 제목입니다.description(문자열, 필수): 문제에 대한 설명입니다.
Cline의
use_mcp_tool도구를 사용하여 이 도구를 호출할 수 있습니다. 예:<use_mcp_tool> <server_name>redmine-server</server_name> <tool_name>create_issue</tool_name> <arguments> { "project_id": "456", "subject": "My New Issue", "description": "This is a test issue created via Cline." } </arguments> </use_mcp_tool>(
456유효한 프로젝트 ID로 바꾸세요.) 이렇게 하면 지정된 프로젝트에 새 이슈가 생성되고 이슈 세부 정보가 JSON으로 반환됩니다.
문제 해결
연결 종료 오류: "MCP 오류 -1: 연결 종료"와 같은 오류가 표시되면
REDMINE_HOST및REDMINE_API_KEY환경 변수가 올바르게 설정되어 있는지 확인하세요. 또한, 컴퓨터에서 Redmine 인스턴스에 액세스할 수 있는지도 확인하세요.서버 로그 확인: 문제가 발생하면 VS Code 터미널에서 서버 출력을 확인하여 오류 메시지를 확인하세요. 서버는 콘솔에 오류를 기록합니다.
Available Tools
1 toolcreate_issueC
Create a new Redmine issue
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID | |
| subject | Yes | Issue subject | |
| description | Yes | Issue description |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a creation operation but doesn't mention permissions required, whether it's idempotent, error handling, or what happens on success (e.g., returns an issue ID). For a mutation tool with zero annotation coverage, this leaves critical behavioral aspects unspecified.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence with no wasted words. It's appropriately sized for a simple creation tool and front-loads the essential information, making it easy to parse quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given this is a mutation tool with no annotations and no output schema, the description is insufficiently complete. It doesn't explain what the tool returns, error conditions, or behavioral nuances. The agent lacks critical information needed to use this tool effectively in real scenarios.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the input schema already documents all three parameters (project_id, subject, description) with basic descriptions. The tool description adds no additional parameter context beyond what's in the schema, resulting in the baseline score for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Create a new') and resource ('Redmine issue'), making the purpose immediately understandable. However, it doesn't differentiate from siblings (though none exist) or specify what constitutes a 'Redmine issue' beyond the basic concept, which prevents a perfect score.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives, prerequisites, or contextual constraints. The description merely restates the tool's function without offering any usage context, which is a significant gap for effective agent decision-making.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
TDQS
With only one tool, there is no possibility of ambiguity or overlap between tools, as there are no other tools to compare it to. The tool's purpose is clearly defined and distinct by default.
The single tool follows a clear verb_noun pattern (create_issue), which is consistent with itself. There are no other tools to create inconsistency, so the naming is perfectly predictable.
A single tool is too few for a server named 'Redmine MCP Server for Cline', which implies broader functionality for interacting with Redmine (e.g., an issue tracking system). This minimal set severely limits the server's utility and scope.
The tool surface is severely incomplete for Redmine interaction, as it only allows creating issues without any ability to read, update, delete, or search issues, or handle other Redmine entities like projects or users. This creates significant gaps for agent workflows.
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Share one project context across ChatGPT, Claude, Telegram and any MCP client.
Model Context Protocol server for todo.vu task management and time tracking.
Enable secure connectivity between Sentry issues and debugging data, and LLM clients, using a Model Context Protocol (MCP) server.
An MCP server that provides access to Testiny projects, test cases and test runs
Related MCP Servers
- AlicenseNot gradedqualityFmaintenanceA 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.78MIT
- AlicenseBqualityDmaintenanceA Model Context Protocol server that enables Claude Code to directly interact with Redmine project management systems, supporting issue management, project operations, and search features.229MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI coding agents to interact with Redmine projects, issues, time tracking, and members through natural language via the Model Context Protocol.
- AlicenseAqualityDmaintenanceEnables Cursor IDE to directly interact with OpenProject through the Model Context Protocol, supporting CRUD operations on projects and work packages.915MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/papunoko/Redmine-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server