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

mcp-server-redmine

v0.3.0

Published

MCP server for Redmine REST API

Readme

mcp-server-redmine

MCP server for the Redmine REST API. Exposes 21 tools covering Issues, Projects, Users, Time Entries, and Wiki Pages via stdio transport.

Installation

pnpm add mcp-server-redmine

Or use directly via npx:

npx mcp-server-redmine

Configuration

Two environment variables are required:

| Variable | Description | | --- | --- | | REDMINE_URL | Base URL of your Redmine instance, e.g. https://redmine.example.com | | REDMINE_API_KEY | Your Redmine API access key (found in My account → API access key) |

Claude Desktop Setup

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "redmine": {
      "command": "npx",
      "args": ["mcp-server-redmine"],
      "env": {
        "REDMINE_URL": "https://redmine.example.com",
        "REDMINE_API_KEY": "your-api-key"
      }
    }
  }
}

Claude Code Setup

Run from your project root:

claude mcp add-json redmine '{"command":"npx","args":["mcp-server-redmine"],"env":{"REDMINE_URL":"https://redmine.example.com","REDMINE_API_KEY":"your-api-key"}}'

Or add manually to .mcp.json at the root of your project:

{
  "mcpServers": {
    "redmine": {
      "command": "npx",
      "args": ["mcp-server-redmine"],
      "env": {
        "REDMINE_URL": "https://redmine.example.com",
        "REDMINE_API_KEY": "your-api-key"
      }
    }
  }
}

Tools

Issues

| Tool | Description | | --- | --- | | redmine_list_issues | List issues with filters: project, status, tracker, assignee, priority, pagination | | redmine_get_issue | Get a single issue by numeric ID | | redmine_create_issue | Create a new issue in a project | | redmine_update_issue | Update fields on an existing issue | | redmine_delete_issue | Permanently delete an issue |

Projects

| Tool | Description | | --- | --- | | redmine_list_projects | List all accessible projects | | redmine_get_project | Get a project by identifier (slug) or numeric ID | | redmine_create_project | Create a new project | | redmine_update_project | Update an existing project |

Users

| Tool | Description | | --- | --- | | redmine_list_users | List users (requires admin privileges) | | redmine_get_user | Get a user by numeric ID | | redmine_get_current_user | Get the authenticated user's profile |

Time Entries

| Tool | Description | | --- | --- | | redmine_list_time_entries | List time entries with filters: project, issue, user, date range | | redmine_get_time_entry | Get a single time entry by numeric ID | | redmine_log_time | Log hours against an issue or project | | redmine_update_time_entry | Update an existing time entry | | redmine_delete_time_entry | Permanently delete a time entry |

Wiki Pages

| Tool | Description | | --- | --- | | redmine_list_wiki_pages | List all wiki pages in a project | | redmine_get_wiki_page | Get wiki page content by project and title | | redmine_update_wiki_page | Create or update a wiki page | | redmine_delete_wiki_page | Permanently delete a wiki page (requires admin) |

Development

# Install dependencies
pnpm install

# Build
pnpm build

# Watch mode
pnpm dev

# Tests
pnpm test

# Type check
pnpm typecheck

License

MIT