trackmcp
Back to directory
adesulaiman

mcp-redmine

View on GitHub

MCP Redmine

0 stars PythonOthers Updated Jun 15, 2025

Documentation

MCP Redmine - Quick Start Guide (Windows)

This guide will help you set up and run MCP Redmine on your Windows machine, using the folder structure and commands from your setup.

Prerequisites

  • Python 3.8 or newer installed
  • uv Python package manager (will be installed below)
  • git installed
  • Access to a Redmine instance and your API key

1. Install `uv` (Python package manager)

Open PowerShell and run:

powershell
pip install uv

2. Clone the MCP Redmine Repository

powershell
git clone https://github.com/runekaagaard/mcp-redmine.git
cd "C:/Users/Ade Sulaiman/Desktop/AI/redmine mcp/mcp-redmine"

3. Install Dependencies

powershell
uv sync

4. Set Up Environment Variables (for manual run)

Replace with your actual Redmine URL and API key:

powershell
$env:REDMINE_URL = "http://localhost:3000"
$env:REDMINE_API_KEY = "your-api-key"

5. Run the MCP Redmine Server

powershell
uv run mcp_redmine/server.py main

6. (Optional) Integrate with Claude Desktop

Edit your config at `C:/Users/Ade Sulaiman/AppData/Roaming/Claude/claude_desktop_config.json`:

json
{
  "mcpServers": {
    "redmine": {
      "command": "uv",
      "args": [
        "run",
        "--directory",
        "C:/Users/Ade Sulaiman/Desktop/AI/redmine mcp/mcp-redmine",
        "-m",
        "mcp_redmine.server",
        "main"
      ],
      "env": {
        "REDMINE_URL": "http://localhost:3000",
        "REDMINE_API_KEY": "your-api-key"
      }
    }
  }
}

7. Verify the Connection

  • Restart Claude Desktop if running.
  • Try a Redmine command in Claude Desktop (e.g., "List all Redmine projects").
  • Check the MCP Redmine server terminal for activity.

(Original README continues below)

Frequently asked questions

What is mcp-redmine?

mcp-redmine is MCP Redmine

How do I install mcp-redmine?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is mcp-redmine open source?

Yes — it is hosted on GitHub at https://github.com/adesulaiman/mcp-redmine.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP