AgentHubAgentHub

redmine-mcp-server

MCP ServerMCP Registry官方收录

io.github.jztan/redmine-mcp-server · v2.2.0

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

概览

redmine-mcp-server 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "redmine-mcp-server": {
      "command": "uvx",
      "args": [
        "redmine-mcp-server"
      ],
      "env": {
        "REDMINE_URL": "<REDMINE_URL>"
      }
    }
  }
}

环境变量

REDMINE_URL必填

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)

相关资源

统一 Manifest

{
  "id": "io.github.jztan/redmine-mcp-server",
  "type": "mcp-server",
  "version": "2.2.0",
  "displayName": "redmine-mcp-server",
  "description": "Production-ready MCP server for Redmine with security, pagination, and enterprise features",
  "repository": {
    "url": "https://github.com/jztan/redmine-mcp-server",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "redmine-mcp-server",
        "version": "2.2.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "REDMINE_URL",
            "description": "URL of your Redmine server (e.g., https://your-redmine-server.com)",
            "isRequired": true
          },
          {
            "name": "REDMINE_USERNAME",
            "description": "Redmine username for authentication (alternative to API key)"
          },
          {
            "name": "REDMINE_PASSWORD",
            "description": "Redmine password for authentication (alternative to API key)",
            "isSecret": true
          },
          {
            "name": "REDMINE_API_KEY",
            "description": "Redmine API key for authentication (alternative to username/password)",
            "isSecret": true
          },
          {
            "name": "SERVER_HOST",
            "description": "Host address for the MCP server (default: 0.0.0.0)"
          },
          {
            "name": "SERVER_PORT",
            "description": "Port for the MCP server (default: 8000)"
          },
          {
            "name": "PUBLIC_HOST",
            "description": "Public hostname for file download URLs (default: localhost)"
          },
          {
            "name": "PUBLIC_PORT",
            "description": "Public port for file download URLs (default: 8000)"
          },
          {
            "name": "ATTACHMENTS_DIR",
            "description": "Directory for storing downloaded attachments (default: ./attachments)"
          },
          {
            "name": "AUTO_CLEANUP_ENABLED",
            "description": "Enable automatic cleanup of expired files (default: true)"
          },
          {
            "name": "CLEANUP_INTERVAL_MINUTES",
            "description": "Interval between cleanup runs in minutes (default: 10)"
          },
          {
            "name": "ATTACHMENT_EXPIRES_MINUTES",
            "description": "Default expiry time for attachments in minutes (default: 60)"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.jztan/redmine-mcp-server",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.jztan%2Fredmine-mcp-server/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
redmine-mcp-server — MCP Server 安装与配置 · AgentHub