redmine-mcp

redmine-mcp

0

Redmine MCP is an MCP server developed for the Redmine Project Management Software. It allows for integration and management of Redmine projects through available tools like `list_issues`. It is built with the MCP SDK for improved project handling.

Redmine MCP

This is a simple MCP server designed for the Redmine Project Management Software.

It was built using the MCP SDK.

Get started

  1. Clone the repo
  2. Install dependencies:
bun
  1. Set up .env
cp .env.example .env # If it succeeds, configure .env to your liking
  1. Test-run MCP server using bun run index.ts. If it works, continue to next section.

Adding to Claude Desktop

  1. Open Claude Desktop
  2. Click ⌘, => Developer => Edit Config => Paste Code Below (after configuring)
{
  "mcpServers": {
    "RedmineMCP": {
      "command": "bun",
      "args": ["run", "/path/to/redmine-mcp-server/index.ts"],
      "env": {
        "REDMINE_API_KEY": "${env:REDMINE_API_KEY}",
        "REDMINE_HOST": "${env:REDMINE_HOST}"
      }
    }
  },
  "globalShortcut": ""
}

Available Tools

Right now, the only available tool is the list_issues tool. If you want to have one added, please open an issue, and let us discuss.

Enjoy!