Redmine MCP Server
Provides tools for interacting with the Redmine REST API, enabling AI agents to manage issues, time entries, issue relations, checklists, project versions, watchers, and perform global searches.
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., "@Redmine MCP Servershow open issues assigned to me in the Redmine project"
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.
Redmine MCP Server (patched fork)
Forked from https://github.com/informatikTirol/redmine-mcp-server (itself forked from https://github.com/milldea-mitsuya/redmine-mcp-server).
Patch: base-URL subpath bug
Upstream builds request URLs with new URL(path, REDMINE_URL), where path starts with a leading
/ (e.g. /issues.json). Per the WHATWG URL spec, a leading / resolves relative to the origin,
discarding any subpath in REDMINE_URL — so a Redmine installed at http://host:8080/redmine
gets requests sent to http://host:8080/issues.json (404) instead of
http://host:8080/redmine/issues.json.
This fork fixes customFetch in dist/server.mjs to join the base URL and path correctly,
so REDMINE_URL with a subpath works as expected.
Usage
Point your MCP client config at this repo instead of the npm package:
"redmine": {
"command": "npx",
"args": ["-y", "github:vchekos163/redmine-mcp-server"],
"env": {
"REDMINE_URL": "http://your-redmine-host/optional-subpath",
"REDMINE_API_KEY": "your-api-key",
"REDMINE_MCP_READ_ONLY": "true"
}
}Model Context Protocol (MCP) server for Redmine that provides comprehensive access to the Redmine REST API.
Related MCP server: Redmine MCP server for Cursor
Table of Contents
Overview
This project is an MCP server that comprehensively covers Redmine's REST API. It allows you to operate Redmine from MCP clients (such as Claude Desktop).
What's New in v1.2.2
🎉 Major feature enhancements since v1.0.0:
Email Notification Suppression (v1.2.2): Silent issue updates without sending emails -
suppress_mailparameter forupdateIssue(requires redmine_silencer plugin)Watcher Support (v1.2.1): Add users as watchers to issues with dedicated
addWatchertoolFeature Flags (v1.2.0): Granular control over enabled features - disable specific tool groups via environment variables
Checklists Plugin (v1.2.0): Full support for redmine_checklists plugin (create, read, update, delete checklist items)
Issue Relations (v1.2.0): Create and manage relationships between issues (blocks, duplicates, relates, etc.)
Enhanced Time Tracking (v1.2.0): Create and update time entries with full activity support
Versions Support (v1.2.0): Access project versions and milestones
Comprehensive Documentation (v1.2.0): New docs covering all features, configuration options, and plugin integration
All optional features are enabled by default but can be selectively disabled for minimal tool footprint.
Quick Start
Installation
The easiest way to use this MCP server is via npx:
# For Claude Code (local configuration)
claude mcp add redmine \
-e REDMINE_URL=https://your-redmine.example.com \
-e REDMINE_API_KEY=your-api-key-here \
-- npx -y @informatik_tirol/redmine-mcp-server
# For Claude Desktop - add to claude_desktop_config.json:
{
"mcpServers": {
"redmine": {
"command": "npx",
"args": ["-y", "@informatik_tirol/redmine-mcp-server"],
"env": {
"REDMINE_URL": "https://your-redmine.example.com",
"REDMINE_API_KEY": "your-api-key-here"
}
}
}
}See Configuration below for all options including read-only mode and feature flags.
Available Tools
This MCP server provides comprehensive access to Redmine's REST API with the following tools:
Core Features (Always Active)
Issues
✅ getIssues - List issues with filtering
✅ createIssue - Create new issue
✅ getIssue - Show issue details
✅ updateIssue - Update existing issue (supports email suppression)
Search
✅ search - Global search across Redmine
Optional Features (Configurable via Environment Variables)
All optional features are enabled by default and can be disabled individually:
Time Entries
✅ getTimeEntries - List time entries with filters
✅ createTimeEntry - Create new time entry
✅ updateTimeEntry - Update existing time entry
Disable with: REDMINE_MCP_DISABLE_TIME_ENTRIES=true
Issue Relations
✅ getIssueRelations - List all relations for an issue
✅ createIssueRelation - Create relation between issues
Supports: relates, duplicates, blocks, precedes, follows, etc.
Disable with: REDMINE_MCP_DISABLE_RELATIONS=true
Checklists (Requires redmine_checklists Plugin)
✅ getChecklistsByIssue - List all checklists for an issue
✅ createChecklist - Add new checklist item
✅ getChecklist - Get checklist item details
✅ updateChecklist - Update checklist item (toggle done, rename)
✅ deleteChecklist - Delete checklist item
Disable with: REDMINE_MCP_DISABLE_CHECKLISTS=true
Versions
✅ getVersionsByProject - List project versions/milestones
Disable with: REDMINE_MCP_DISABLE_VERSIONS=true
Watchers
✅ addWatcher - Add user as watcher to issue
Disable with: REDMINE_MCP_DISABLE_WATCHERS=true
Disabled Features
The following Redmine API features are currently disabled (commented out in src/server.ts):
Projects management (most operations disabled for safety)
Users management (read operations available via API)
Attachments (file upload/download - requires special handling)
Wiki pages (limited use case in MCP context)
News (read-only feature)
Most administrative operations
See doc/features.md for complete feature documentation.
Features
📋 Comprehensive API Coverage: Full support for Redmine's REST API
🔒 Read-Only Mode: Optional safe data reference mode (
REDMINE_MCP_READ_ONLY=true)⚙️ Feature Flags: Granular control over enabled features via environment variables
✅ Checklist Support: Full integration with redmine_checklists plugin
🔗 Issue Relations: Create and manage dependencies between issues
⏱️ Time Tracking: Log and manage time entries on issues
📦 Version Management: Access project versions/milestones
👁️ Watchers: Add users as watchers to issues
🔍 Advanced Search: Global search across Redmine instances
🔕 Email Suppression: Optional email notification control for issue operations (requires redmine_silencer plugin)
🛡️ Type Safety: Full TypeScript support with Zod schema validation
🔧 Auto-Generated: API client generated from OpenAPI specification
Prerequisites
Getting Redmine API Key
Log in to Redmine with administrator privileges
Go to "Administration" → "Settings" → "API" tab
Check "Enable REST web service"
Generate "API access key" in personal settings
For details, refer to Redmine REST API documentation.
Configuration
Environment Variables
Required Variables
REDMINE_URL (Required): Base URL of the Redmine instance
Example:
https://redmine.example.com
REDMINE_API_KEY (Required): API key generated in Redmine
Set the API key obtained in prerequisites
Optional Variables
REDMINE_MCP_READ_ONLY (Optional): Enable read-only mode
true: Read-only mode (disables all data modification operations)falseor unset: Allow all operations (default)
Feature Flags (Optional)
All features are enabled by default. Set these to true to disable specific tool groups:
REDMINE_MCP_DISABLE_CHECKLISTS: Disable checklist tools (requires redmine_checklists plugin)
REDMINE_MCP_DISABLE_RELATIONS: Disable issue relations tools
REDMINE_MCP_DISABLE_TIME_ENTRIES: Disable time entry tools
REDMINE_MCP_DISABLE_VERSIONS: Disable version/milestone tools
REDMINE_MCP_DISABLE_WATCHERS: Disable watcher tools
Use Case: Reduce tool count for specific workflows or when plugins are not available.
MCP Client Configuration
Add the following as MCP configuration for your AI agent:
{
"mcpServers": {
"redmine": {
"command": "npx",
"args": ["-y", "@informatik_tirol/redmine-mcp-server"],
"env": {
"REDMINE_URL": "https://redmine.example.com",
"REDMINE_API_KEY": "your-api-key-here",
"REDMINE_MCP_READ_ONLY": "true"
}
}
}
}Below are specific configuration methods for several MCP clients:
Claude Desktop
Add the following to claude_desktop_config.json:
{
"mcpServers": {
"redmine": {
"command": "npx",
"args": ["-y", "@informatik_tirol/redmine-mcp-server"],
"env": {
"REDMINE_URL": "https://redmine.example.com",
"REDMINE_API_KEY": "your-api-key-here",
"REDMINE_MCP_READ_ONLY": "true"
}
}
}
}Claude Code
In Claude Code, you can add MCP servers using the following commands:
Basic Installation (All Features Enabled):
# Local configuration (current project only)
claude mcp add redmine \
-e REDMINE_URL=https://redmine.example.com \
-e REDMINE_API_KEY=your-api-key-here \
-- npx -y @informatik_tirol/redmine-mcp-server
# Project configuration (committed to git)
claude mcp add -s project redmine \
-e REDMINE_URL=https://redmine.example.com \
-e REDMINE_API_KEY=your-api-key-here \
-- npx -y @informatik_tirol/redmine-mcp-server
# User configuration (global - all projects)
claude mcp add -s user redmine \
-e REDMINE_URL=https://redmine.example.com \
-e REDMINE_API_KEY=your-api-key-here \
-- npx -y @informatik_tirol/redmine-mcp-serverRead-Only Mode (Safe for Production):
claude mcp add -s user redmine \
-e REDMINE_URL=https://redmine.example.com \
-e REDMINE_API_KEY=your-api-key-here \
-e REDMINE_MCP_READ_ONLY=true \
-- npx -y @informatik_tirol/redmine-mcp-serverCustom Feature Configuration:
# Minimal setup - Core features only (no plugins)
claude mcp add -s user redmine \
-e REDMINE_URL=https://redmine.example.com \
-e REDMINE_API_KEY=your-api-key-here \
-e REDMINE_MCP_DISABLE_CHECKLISTS=true \
-e REDMINE_MCP_DISABLE_RELATIONS=true \
-e REDMINE_MCP_DISABLE_TIME_ENTRIES=true \
-e REDMINE_MCP_DISABLE_VERSIONS=true \
-e REDMINE_MCP_DISABLE_WATCHERS=true \
-- npx -y @informatik_tirol/redmine-mcp-server
# Checklists only (with plugin support)
claude mcp add -s user redmine \
-e REDMINE_URL=https://redmine.example.com \
-e REDMINE_API_KEY=your-api-key-here \
-e REDMINE_MCP_DISABLE_RELATIONS=true \
-e REDMINE_MCP_DISABLE_TIME_ENTRIES=true \
-e REDMINE_MCP_DISABLE_VERSIONS=true \
-e REDMINE_MCP_DISABLE_WATCHERS=true \
-- npx -y @informatik_tirol/redmine-mcp-server
# Time tracking focus
claude mcp add -s user redmine \
-e REDMINE_URL=https://redmine.example.com \
-e REDMINE_API_KEY=your-api-key-here \
-e REDMINE_MCP_DISABLE_CHECKLISTS=true \
-e REDMINE_MCP_DISABLE_RELATIONS=true \
-e REDMINE_MCP_DISABLE_VERSIONS=true \
-e REDMINE_MCP_DISABLE_WATCHERS=true \
-- npx -y @informatik_tirol/redmine-mcp-serverAvailable Feature Flags:
REDMINE_MCP_DISABLE_CHECKLISTS=true- Disable checklist tools (requiresredmine_checklistsplugin)REDMINE_MCP_DISABLE_RELATIONS=true- Disable issue relations toolsREDMINE_MCP_DISABLE_TIME_ENTRIES=true- Disable time entry toolsREDMINE_MCP_DISABLE_VERSIONS=true- Disable version/milestone toolsREDMINE_MCP_DISABLE_WATCHERS=true- Disable watcher tools
See doc/configuration.md for complete configuration options.
Visual Studio Code
Project configuration (.vscode/mcp.json):
{
"servers": {
"redmine": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@informatik_tirol/redmine-mcp-server"],
"env": {
"REDMINE_URL": "https://redmine.example.com",
"REDMINE_API_KEY": "your-api-key-here",
"REDMINE_MCP_READ_ONLY": "true"
}
}
}
}User configuration (settings.json):
{
"mcp": {
"servers": {
"redmine": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@informatik_tirol/redmine-mcp-server"],
"env": {
"REDMINE_URL": "https://redmine.example.com",
"REDMINE_API_KEY": "your-api-key-here",
"REDMINE_MCP_READ_ONLY": "true"
}
}
}
}
}Use Cases
Task Management with Checklists
1. Create issue for feature development
2. Add checklist items for implementation steps
3. Update checklist items as work progresses
4. Track done ratio automaticallyIssue Dependency Tracking
1. Create multiple related issues
2. Link with relations (blocks, precedes, etc.)
3. Manage dependencies and workflow
4. Track duplicate issuesTime Tracking Integration
1. Create/update issues via MCP
2. Log time entries with activities
3. Track hours per issue/project
4. Generate time reportsAutomated Workflows
1. AI assistant creates issues from conversations
2. Automatically adds watchers to relevant issues
3. Links related issues based on context
4. Logs time as work is discussedDocumentation
doc/configuration.md - Complete configuration guide with environment variables
doc/features.md - Comprehensive feature overview and API reference
doc/features/checklist-plugin-support.md - Checklist plugin integration details
DEVELOPMENT.md - Development and contribution guide
Plugin Requirements
Checklists Feature
To use checklist tools, install the redmine_checklists plugin on your Redmine instance:
Provides task breakdown within issues
Fully integrated with MCP server
Auto-disabled if
REDMINE_MCP_DISABLE_CHECKLISTS=true
Email Notification Control (Optional)
To suppress email notifications when updating issues, install the redmine_silencer plugin:
Allows silent issue updates without sending notification emails
Useful for bulk operations or automated workflows
Only works with
updateIssue- issue creation always sends notifications
Usage Example:
// Update issue silently (no emails sent to watchers)
updateIssue({
suppress_mail: "1",
issue: {
status_id: 2,
notes: "Silent update - no email notifications"
}
})
// Bulk update example
updateIssue({
suppress_mail: "1",
issue: {
assigned_to_id: 5,
priority_id: 3,
done_ratio: 50
}
})Important Notes:
⚠️ Issue creation (
createIssue) does NOT support email suppression - the plugin only hooks into update operationsIf you need to create issues without notifications, don't assign users or add watchers initially
If the plugin is not installed, the
suppress_mailparameter is gracefully ignored (no error)
Development
See DEVELOPMENT.md for:
Building from source
Code generation from OpenAPI spec
Adding new features
Testing and debugging
Changelog
v1.2.2 (Upcoming)
Email Notification Suppression: Added
suppress_mailparameter forupdateIssuetool (requires redmine_silencer plugin)Silent issue updates without sending notification emails to watchers
Graceful degradation when plugin is not installed
Note: Issue creation (
createIssue) does not support email suppression due to plugin limitations - the redmine_silencer plugin only hooks into update operations
v1.2.1 (2025-10-30)
Watcher Support: Added
addWatchertool to add users as watchers to issuesFeature Flag: New
REDMINE_MCP_DISABLE_WATCHERSenvironment variable to disable watcher toolsEnhanced README documentation for watcher functionality
v1.2.0 (2025-10-29)
Feature Flags: Granular control over enabled features via environment variables
Checklists Plugin: Full support for redmine_checklists plugin (create, read, update, delete checklist items)
Issue Relations: Create and manage relationships between issues (blocks, duplicates, relates, etc.)
Time Tracking: Enhanced time entry tools with activity support
Versions Support: Access project versions and milestones
Comprehensive Documentation: New docs covering all features, configuration options, and plugin integration
v1.1.3
Added time entry creation and updates
Enhanced TypeScript configuration
v1.1.1
Initial fork and package rename
Core issue and search functionality
License
MIT License
Author
Original: onozaty
Modified: informatik_tirol
Acknowledgments
Original project: milldea-mitsuya/redmine-mcp-server
OpenAPI specification: d-yoshi/redmine-openapi
Code generation: Orval - TypeScript client and schema generator from OpenAPI
MCP Protocol: Model Context Protocol
This server cannot be deployed
Maintenance
Related MCP Connectors
An MCP server that provides access to Testiny projects, test cases and test runs
- TimequipOAuthcom.timequip
Manage Timequip projects, tasks, comments, members, and dashboards through MCP.
Read and write Mission Control state via MCP — projects, tasks, subtasks, templates, status updates.
Manage feature requests, votes, roadmaps, and changelogs from any MCP client.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceExposes Redmine data to MCP clients through OAuth 2.1 authentication, enabling AI agents to manage projects, issues, and time entries. It supports a variety of operations including issue creation, full-text search, and time logging via a secure HTTP transport.1-
- AlicenseNot gradedqualityDmaintenanceEnables interacting with a Redmine instance via REST API, allowing issues, projects, time logging, and generic endpoint calls through an MCP agent.28 npmMIT
- AlicenseBqualityDmaintenanceMCP server for Redmine project management, enabling tools for managing projects, issues, users, time entries, groups, memberships, versions, wiki, news, attachments, search, and Agile sprints via the Redmine REST API.897 npm1MIT
- AlicenseNot gradedqualityCmaintenanceProvides MCP tools for interacting with Redmine, including issues, projects, wiki pages, time entries, and more.7 npm1MIT