Redmine MCP Server
Enables AI agents to interact with Redmine API for managing tickets, projects, users, and time entries. Supports comprehensive operations including issue creation/updates, project management, time logging, and search with dual authentication (Basic Auth + API Key).
README
Redmine MCP Server
An MCP (Model Context Protocol) server that allows AI agents to interact with the Redmine API to manage tickets, projects, users, and time entries.
Features
- ✅ Dual Authentication Support: Basic Auth + API Key
- ✅ Comprehensive Toolset for Redmine interaction:
get_issues- List issues with filtersget_issue- Get issue details including journals and attachmentsget_projects- List projectsget_project- Get project detailsget_project_members- List project members (Users)get_project_versions- List project versions (Milestones)search_issues- Search issues by keywordcreate_issue- Create a new issueupdate_issue- Update an existing issueadd_comment- Add a comment to an issuedelete_issue- Delete an issuelog_time- Log time entriesget_time_entries- List logged time entriesget_time_entry_activities- List available time entry activities
- ✅ Type-safe with TypeScript and Zod validation
- ✅ Pagination support for all list endpoints
Installation
From npm (Recommended)
npm install -g @duongkhuong/mcp-redmine
From Source
git clone git@github.com:vfa-khuongdv/mcp_readmine.git
cd mcp_readmine
npm install
npm run build
Configuration
You need to provide the following environment variables:
REDMINE_URL- URL of your Redmine instance (e.g., https://redmine.example.com)REDMINE_API_KEY- API key from your account settingsREDMINE_USERNAME- Username for Basic AuthenticationREDMINE_PASSWORD- Password for Basic Authentication
Note: The Redmine API often requires BOTH Basic Auth (username/password) AND an API Key for full access depending on server configuration.
Usage
With Claude Desktop
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"redmine": {
"command": "npx",
"args": ["-y", "@duongkhuong/mcp-redmine"],
"env": {
"REDMINE_URL": "https://your-redmine-instance.com",
"REDMINE_API_KEY": "your_api_key_here",
"REDMINE_USERNAME": "your_username",
"REDMINE_PASSWORD": "your_password"
}
}
}
}
Restart Claude Desktop to load the MCP server.
With Cursor IDE
Add to your Cursor configuration file:
macOS/Linux: ~/.cursor/mcp.json
Windows: %APPDATA%\Cursor\User\mcp.json
{
"mcpServers": {
"redmine": {
"command": "npx",
"args": ["-y", "@duongkhuong/mcp-redmine"],
"env": {
"REDMINE_URL": "https://your-redmine-instance.com",
"REDMINE_API_KEY": "your_api_key_here",
"REDMINE_USERNAME": "your_username",
"REDMINE_PASSWORD": "your_password"
}
}
}
}
Restart Cursor to load the MCP server.
With VS Code
Option 1: Using mcp.json (No extension required)
Create or edit your MCP configuration file:
macOS/Linux: ~/.vscode/mcp.json
Windows: %APPDATA%\Code\User\mcp.json
{
"mcpServers": {
"redmine": {
"command": "npx",
"args": ["-y", "@duongkhuong/mcp-redmine"],
"env": {
"REDMINE_URL": "https://your-redmine-instance.com",
"REDMINE_API_KEY": "your_api_key_here",
"REDMINE_USERNAME": "your_username",
"REDMINE_PASSWORD": "your_password"
}
}
}
}
Reload VS Code to load the MCP server.
Option 2: Using Cline Extension
- Install the Cline extension.
- Open VS Code Settings (JSON).
- Add the MCP configuration:
{
"cline.mcpServers": {
"redmine": {
"command": "npx",
"args": ["-y", "@duongkhuong/mcp-redmine"],
"env": {
"REDMINE_URL": "https://your-redmine-instance.com",
"REDMINE_API_KEY": "your_api_key_here",
"REDMINE_USERNAME": "your_username",
"REDMINE_PASSWORD": "your_password"
}
}
}
}
Reload VS Code to load the MCP server.
How to get your Redmine API Key
- Log in to your Redmine instance.
- Go to My account (top right corner).
- Click on API access key (right sidebar or link).
- Click Show to reveal the key.
- Copy the API key and paste it into your configuration.
Running Standalone (Development)
npm start
Testing with MCP Inspector
npx @modelcontextprotocol/inspector npx -y @duongkhuong/mcp-redmine
Available Tools
1. get_issues
Get a list of issues/tickets with optional filters.
Parameters:
project_id(number, optional) - Filter by project IDstatus_id(number | "open" | "closed" | "*", optional) - Filter by statusassigned_to_id(number, optional) - Filter by assignee IDlimit(number, optional) - Number of results (1-100, default: 25)offset(number, optional) - Pagination offset (default: 0)
Example:
{
"project_id": 1,
"status_id": "open",
"limit": 10
}
2. get_issue
Get detailed information about a specific issue by ID, including journals, attachments, and relations.
Parameters:
issue_id(number, required) - The ID of the issue
3. get_projects
Get a list of all projects.
Parameters:
limit(number, optional) - Number of results (1-100, default: 25)offset(number, optional) - Pagination offset (default: 0)
4. get_project
Get detailed information about a specific project by ID.
Parameters:
project_id(number, required) - The ID of the project
5. get_project_members
Get a list of project members (users) in a specific project.
Parameters:
project_id(number, required) - The ID of the projectlimit(number, optional) - Number of results (1-100, default: 25)offset(number, optional) - Pagination offset (default: 0)
6. get_project_versions
Get a list of versions (milestones) for a specific project.
Parameters:
project_id(number, required) - The ID of the project
7. search_issues
Search for issues by keyword in the subject field.
Parameters:
query(string, required) - Search keywordlimit(number, optional) - Number of results (1-100, default: 25)offset(number, optional) - Pagination offset (default: 0)
8. log_time
Log time stats for an issue or project.
Parameters:
issue_id(number, optional) - The ID of the issue to log time forproject_id(number, optional) - The ID of the project to log time forhours(number, required) - The number of hours to logactivity_id(number, optional) - The ID of the activitycomments(string, optional) - Short comment for the time entryspent_on(string, optional) - Date the time was spent (YYYY-MM-DD)
9. get_time_entries
Get a list of time entries with filters.
Parameters:
project_id(number, optional) - Filter by projectuser_id(number, optional) - Filter by userfrom(string, optional) - Start date (YYYY-MM-DD)to(string, optional) - End date (YYYY-MM-DD)limit(number, optional) - Number of results (1-100, default: 25)offset(number, optional) - Pagination offset (default: 0)
10. get_time_entry_activities
Get a list of available time entry activities.
Parameters: None
11. create_issue
Create a new issue/ticket in Redmine.
Parameters:
project_id(number, required) - ID of the projectsubject(string, required) - Title of the issuedescription(string, optional) - Detailed descriptiontracker_id(number, optional) - Tracker ID (Bug, Feature, etc.)status_id(number, optional) - Status IDpriority_id(number, optional) - Priority IDassigned_to_id(number, optional) - User ID to assignstart_date(string, optional) - Start date (YYYY-MM-DD)due_date(string, optional) - Due date (YYYY-MM-DD)done_ratio(number, optional) - Completion percentage (0-100)fixed_version_id(number, optional) - Target version/milestone ID
12. update_issue
Update an existing issue/ticket. Only provided fields will be updated.
Parameters:
issue_id(number, required) - ID of the issue to updateproject_id(number, optional) - Move to another projectsubject(string, optional) - Update titledescription(string, optional) - Update descriptiontracker_id(number, optional) - Change trackerstatus_id(number, optional) - Change statuspriority_id(number, optional) - Change priorityassigned_to_id(number, optional) - Reassign to another userstart_date(string, optional) - Update start datedue_date(string, optional) - Update due datedone_ratio(number, optional) - Update completion percentagefixed_version_id(number, optional) - Update target versionnotes(string, optional) - Add a note/comment about the update
13. add_comment
Add a comment/note to an issue.
Parameters:
issue_id(number, required) - ID of the issuenotes(string, required) - Comment content
14. delete_issue
Delete an issue/ticket from Redmine.
Parameters:
issue_id(number, required) - ID of the issue to delete
Example Prompts
Here are some example prompts you can use to interact with the Redmine MCP server:
🔍 Querying & Search
- "List all open bugs in project 'Mobile App'"
- "Show me high priority issues assigned to me"
- "Search for issues about 'login failure'"
- "Get details of issue #1234 including history"
- "Who are the members of project ID 5?"
📝 Issue Management
- "Create a new feature request in 'Web Platform' project: Add Dark Mode toggle"
- "Update issue #567 status to 'Resolved' and set done ratio to 100%"
- "Reassign issue #890 to user 'John Doe'"
- "Add a comment to issue #123: 'Fixed in commit abc1234'"
- "Delete issue #999"
⏱️ Time Tracking
- "Log 2 hours on issue #123 for 'Development'"
- "Show my time entries for this week"
- "List time entries for project 'Website Redesign' in January"
- "What are the available activities for time logging?"
Development
Watch mode
npm run dev
Project structure
mcp-redmine/
├── src/
│ ├── index.ts # MCP server entry point
│ ├── redmine-client.ts # Redmine API client
│ ├── tools.ts # MCP tool definitions
│ └── types.ts # TypeScript types & Zod schemas
├── dist/ # Compiled JavaScript
├── .env # Environment variables (gitignored)
├── .env.example # Environment template
├── package.json
└── tsconfig.json
Troubleshooting
Authentication errors
Ensure you have provided:
- ✅ REDMINE_URL (no trailing slash)
- ✅ REDMINE_API_KEY (from account settings)
- ✅ REDMINE_USERNAME
- ✅ REDMINE_PASSWORD
Connection errors
- Check if REDMINE_URL is correct.
- Check network/firewall settings.
- Verify if API key is still valid.
Tool not found
- Ensure you have built the project:
npm run build - Restart your AI client (Claude, Cursor, VS Code) after updating config.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。