npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@informatik_tirol/redmine-mcp-server

v1.3.0

Published

MCP server for Redmine

Downloads

146

Readme

Redmine MCP Server

Forked from https://github.com/milldea-mitsuya/redmine-mcp-server

Model Context Protocol (MCP) server for Redmine that provides comprehensive access to the Redmine REST API.

npm version License: MIT

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_mail parameter for updateIssue (requires redmine_silencer plugin)
  • Watcher Support (v1.2.1): Add users as watchers to issues with dedicated addWatcher tool
  • Feature 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

  1. Log in to Redmine with administrator privileges
  2. Go to "Administration" → "Settings" → "API" tab
  3. Check "Enable REST web service"
  4. 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)
    • false or 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-server

Read-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-server

Custom 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-server

Available Feature Flags:

  • REDMINE_MCP_DISABLE_CHECKLISTS=true - Disable checklist tools (requires redmine_checklists plugin)
  • REDMINE_MCP_DISABLE_RELATIONS=true - Disable issue relations tools
  • REDMINE_MCP_DISABLE_TIME_ENTRIES=true - Disable time entry tools
  • REDMINE_MCP_DISABLE_VERSIONS=true - Disable version/milestone tools
  • REDMINE_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 automatically

Issue Dependency Tracking

1. Create multiple related issues
2. Link with relations (blocks, precedes, etc.)
3. Manage dependencies and workflow
4. Track duplicate issues

Time Tracking Integration

1. Create/update issues via MCP
2. Log time entries with activities
3. Track hours per issue/project
4. Generate time reports

Automated 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 discussed

Documentation

Plugin Requirements

Checklists Feature

To use checklist tools, install the redmine_checklists plugin on your Redmine instance:

  • Plugin: https://www.redmineup.com/pages/plugins/checklists
  • 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:

  • Plugin: https://github.com/paginagmbh/redmine_silencer
  • 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 operations
  • If you need to create issues without notifications, don't assign users or add watchers initially
  • If the plugin is not installed, the suppress_mail parameter 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_mail parameter for updateIssue tool (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 addWatcher tool to add users as watchers to issues
  • Feature Flag: New REDMINE_MCP_DISABLE_WATCHERS environment variable to disable watcher tools
  • Enhanced 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