← Index

io.github.jztan/redmine-mcp-server

io.github.jztan/redmine-mcp-server·v1.2.2·Security
Quality Score
85
/100

Production-ready MCP server for Redmine with security, pagination, and enterprise features

§01  Install
Claude Desktop (uvx)
{
  "mcpServers": {
    "redmine-mcp-server": {
      "command": "uvx",
      "args": [
        "redmine-mcp-server"
      ],
      "env": {
        "REDMINE_URL": "<redmine_url>",
        "REDMINE_USERNAME": "<redmine_username>",
        "REDMINE_PASSWORD": "<your-redmine_password>",
        "REDMINE_API_KEY": "<your-redmine_api_key>",
        "SERVER_HOST": "0.0.0.0",
        "SERVER_PORT": "8000",
        "PUBLIC_HOST": "localhost",
        "PUBLIC_PORT": "8000",
        "ATTACHMENTS_DIR": "./attachments",
        "AUTO_CLEANUP_ENABLED": "true",
        "CLEANUP_INTERVAL_MINUTES": "10",
        "ATTACHMENT_EXPIRES_MINUTES": "60"
      }
    }
  }
}
§02  Environment variables
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)

§03  MCP Quality Score  ·  methodology
freshness
25
completeness
10
installability
25
documentation
15
stability
10
§04  Alternatives in Security