Home › Other › redmine-mcp-server

redmine-mcp-server

MCP server that lets AI assistants manage Redmine issues, projects, wikis, and time tracking

Python
★ 79 stars Last pushed 2026-09-23 License: MIT

Connect

Review any command before running it. Package names and URLs come from the server's own registry entry.

Package (pypi 2.16.0)

uvx redmine-mcp-server

Or add to your MCP client config:

{
  "mcpServers": {
    "redmine-mcp-server": {
      "command": "uvx",
      "args": [
        "redmine-mcp-server"
      ],
      "env": {
        "REDMINE_URL": "<YOUR_VALUE>",
        "REDMINE_USERNAME": "<YOUR_VALUE>",
        "REDMINE_PASSWORD": "<YOUR_VALUE>",
        "REDMINE_API_KEY": "<YOUR_VALUE>",
        "SERVER_HOST": "<YOUR_VALUE>",
        "SERVER_PORT": "<YOUR_VALUE>",
        "PUBLIC_HOST": "<YOUR_VALUE>",
        "PUBLIC_PORT": "<YOUR_VALUE>",
        "ATTACHMENTS_DIR": "<YOUR_VALUE>",
        "AUTO_CLEANUP_ENABLED": "<YOUR_VALUE>",
        "CLEANUP_INTERVAL_MINUTES": "<YOUR_VALUE>",
        "ATTACHMENT_EXPIRES_MINUTES": "<YOUR_VALUE>"
      }
    }
  }
}
  • REDMINE_URL required — URL of your Redmine server (e.g., https://your-redmine-server.com)
  • REDMINE_USERNAME — Redmine username for authentication (alternative to API key)
  • REDMINE_PASSWORD secret — Redmine password for authentication (alternative to API key)
  • REDMINE_API_KEY secret — Redmine API key for authentication (alternative to username/password)
  • SERVER_HOST — Host address for the MCP server (default: 0.0.0.0)
  • SERVER_PORT — Port for the MCP server (default: 8000)
  • PUBLIC_HOST — Public hostname for file download URLs (default: localhost)
  • PUBLIC_PORT — Public port for file download URLs (default: 8000)
  • ATTACHMENTS_DIR — Directory for storing downloaded attachments (default: ./attachments)
  • AUTO_CLEANUP_ENABLED — Enable automatic cleanup of expired files (default: true)
  • CLEANUP_INTERVAL_MINUTES — Interval between cleanup runs in minutes (default: 10)
  • ATTACHMENT_EXPIRES_MINUTES — Default expiry time for attachments in minutes (default: 60)

Related servers

Data from the Official MCP Registry