redmine_mcp_server

Nunocky/redmine_mcp_server

3.3

If you are the rightful owner of redmine_mcp_server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Redmine MCP Server is a model context protocol server designed to interface with Redmine's API, providing a structured and efficient way to manage project-related data.

Tools
  1. Issues

    Manage and track project issues.

  2. Projects

    Access and manage project details.

  3. Users

    Handle user information and roles.

  4. Time Entries

    Track and manage time spent on projects.

  5. Wiki Pages

    Access and edit project wiki pages.

Redmine MCP Server

API Reference

setup

uv sync

Using with Cline

    "Redmine": {
      "disabled": false,
      "command": "uv",
      "args": [
        "--directory",
        "<path_to_mcp_server>",
        "run",
        "main.py"
      ],
    }

Note

Reducing the Number of Tools

main.py ですべての Tool を登録すると、 Claude Desktop などの環境では最初のツール一覧の読み取りでトークンの上限に達してしまいます。実際に使うときは管理者権限の必要なAPIを除くなどして、必要なツールだけを登録するようにしてください。

If you register all Tools in main.py, environments like Claude Desktop may hit the token limit when reading the initial list of tools. When actually using the server, please register only the necessary tools, such as by excluding APIs that require administrator privileges.

Interacting with the MCP Server Manually

To retrieve the list of tools by passing API requests to main.py via a pipe, use the following method.

(echo '{"jsonrpc":"2.0","id":0, "method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"mcp-util-list-tools","version":"0.1.0"}}}' ; \
 echo '{"jsonrpc":"2.0",         "method":"notifications/initialized"}' ; \
 echo '{"jsonrpc":"2.0", "id":2, "method":"tools/list"}') | python main.py

supported APIs

  • Issues
  • Projects
  • Project Memberships
  • Users
  • Time Entries
  • News
  • Issue Relations
  • Versions
  • Wiki Pages
  • Queries
  • Attachments
  • Issue Statuses
  • Trackers
  • Enumerations
  • Issue Categories
  • Roles
  • Groups
  • Custom Fields
  • Search
  • Files
  • My account
    - [ ] Journals

License

This source code is licensed under the Apache License, Version 2.0. See LICENSE for details.