Redmine MCP Server

Redmine MCP Server

Enables AI clients (Cursor, Claude Desktop) to manage Redmine issues, projects, time tracking, and wiki pages through natural language.

Category
访问服务器

README

Redmine MCP Server

Production-ready Model Context Protocol server that exposes Redmine issue management to AI clients (Cursor, Claude Desktop, etc.) over HTTP + SSE, so your whole team can connect remotely.

Features

  • 18 Redmine tools: issues, search, projects, statuses, create/update, time tracking, wiki pages
  • SSE transport for remote team access (GET /sse, POST /messages)
  • Team gate via x-api-key (TEAM_SECRET on server)
  • Per-user Redmine access via x-redmine-api-key in each colleague’s Cursor mcp.json
  • Docker and docker-compose for staging/production
  • nginx sample config with SSE-friendly proxy settings
  • Health endpoint for monitoring

Project structure

redmine-mcp/
├── index.js           # MCP server + Express app
├── package.json
├── .env               # Local secrets (not committed)
├── .env.example
├── .gitignore
├── Dockerfile
├── docker-compose.yml
├── nginx.conf         # Reverse proxy template
└── README.md

Local setup

Prerequisites

  • Node.js 18+
  • A Redmine instance with REST API enabled
  • A Redmine API key (My account → API access key)

Install

cd redmine-mcp
cp .env.example .env
# Edit .env with your Redmine URL and team secret (no personal API keys on the server)
npm install

Configure .env

Variable Description
REDMINE_URL Shared Redmine base URL for the whole team
TEAM_SECRET Shared gate secret; clients send as x-api-key
PORT HTTP port (default 3456)

Each user’s personal Redmine API key is not stored on the server. They put it in Cursor MCP headers as x-redmine-api-key.

Run locally

npm start

Verify:

curl -s http://localhost:3456/health
curl -s -H "x-api-key: YOUR_TEAM_SECRET" http://localhost:3456/health

MCP tools

Tool Description
get_my_issues Issues assigned to the API user (id, subject, status, priority, project, description, due_date, estimated_hours)
get_issue Full issue by ID, including subtasks/children when available
get_subtasks Child issues of a parent (parent_issue_id)
search_issues Search by subject keyword; optional project_id
get_project_issues Fetch all issues for a project by identifier slug
get_projects List all projects
get_issue_statuses List workflow statuses
update_issue Update notes, done_ratio, status_id
create_issue Create issue (project_id, subject required; optional description, priority, assignee)
log_time Log hours on an issue; sets billable hours CF (defaults to hours); activity_id defaults to 5
get_time_entries Time entries for one issue
get_my_time_entries Current user’s time entries (optional date range)
get_time_activities List activity types and IDs for log_time
get_project_time_entries Project time entries with per-user hour summary
get_wiki_pages List wiki pages for a project
get_wiki_page Fetch one wiki page by project and title
create_wiki_page Create a wiki page in a project
update_wiki_page Update an existing wiki page

Project Issue Tools

get_project_issues

Purpose: Fetch all issues for a project using the project identifier slug.

Parameter Type Required Description
project_slug string yes Redmine project identifier slug
status_id number or string no Status filter (default * for all statuses)
include_subprojects boolean no Include subproject issues (default false)

This tool follows Redmine pagination and returns all matching issues, not just the first page.

Example prompts:

  • “Show all issues for project redmine”
  • “Fetch all open issues for project my-project-slug”
  • “List every issue in project support including subprojects”

Time Tracking Tools

Use these tools to log work hours and review time spent in Redmine. Call get_time_activities first if you need valid activity_id values for log_time.

log_time

Purpose: Log time spent on a Redmine issue.

Parameter Type Required Description
issue_id number yes Issue to log time on
hours number yes Hours spent (must be > 0), e.g. 1.5
activity_id number no Activity type ID (default 5 = Development)
comments string no Worklog comments
spent_on string no Date YYYY-MM-DD (defaults to today)
billable_hours number no Billable hours custom field (defaults to hours)

Billable hours are sent as Redmine custom field 1 by default (BILLABLE_HOURS_CF_ID in .env if your instance uses another ID).

Example prompts:

  • “Log 2.5 hours on issue #142 for development activity”
  • “Log 1 hour on issue 98, activity_id 9, comments: code review”
  • “Log 3 hours on issue 50 with 2 billable hours”

get_time_entries

Purpose: Fetch all time entries for a specific issue.

Parameter Type Required Description
issue_id number yes Issue ID
limit number no Max results (default 25)

Returns: id, issue_id, project, user, activity, hours, comments, spent_on, created_on.

Example prompts:

  • “Show me all time entries for issue #98”
  • “How much time has been logged on issue 142?”

get_my_time_entries

Purpose: Fetch time entries logged by the connected Redmine user.

Parameter Type Required Description
from_date string no Start date YYYY-MM-DD
to_date string no End date YYYY-MM-DD
limit number no Max results (default 50)

Example prompts:

  • “What have I logged this week?”
  • “Show my time entries from 2026-05-12 to 2026-05-18”

get_time_activities

Purpose: List available time activity types (Development, Design, Testing, etc.) and their IDs.

No parameters.

Example prompts:

  • “What activity types are available for time logging?”
  • “List Redmine time entry activities so I can log time”

get_project_time_entries

Purpose: Fetch time entries for an entire project, with a summary grouped by user and total hours.

Parameter Type Required Description
project_id number or string yes Project numeric ID or identifier slug
from_date string no Start date YYYY-MM-DD
to_date string no End date YYYY-MM-DD
limit number no Max results (default 50)

Example prompts:

  • “Show all time entries for project redmine slug”
  • “Summarize logged hours by user for project 5 this month”

Wiki Tools

Use these tools to read and manage Redmine project wiki pages. project_id can be either the numeric project ID or the project identifier slug.

get_wiki_pages

Purpose: List wiki pages for a project.

Parameter Type Required Description
project_id number or string yes Project numeric ID or identifier slug

Example prompts:

  • “List wiki pages for project redmine”
  • “Show all wiki pages in project 5”

get_wiki_page

Purpose: Fetch a wiki page by project and title.

Parameter Type Required Description
project_id number or string yes Project numeric ID or identifier slug
title string yes Wiki page title
include_attachments boolean no Include attachments when available

Example prompts:

  • “Show the Installation wiki page for project redmine”
  • “Get the API Documentation wiki page with attachments”

create_wiki_page

Purpose: Create a wiki page in a project.

Parameter Type Required Description
project_id number or string yes Project numeric ID or identifier slug
title string yes Wiki page title
text string yes Wiki page content
comments string no Version comment
parent_title string no Parent wiki page title

Example prompts:

  • “Create a wiki page called Deployment Notes in project redmine”
  • “Create a child wiki page under Installation with these setup steps”

update_wiki_page

Purpose: Update an existing wiki page.

Parameter Type Required Description
project_id number or string yes Project numeric ID or identifier slug
title string yes Wiki page title
text string yes Replacement wiki page content
comments string no Version comment
parent_title string no Parent wiki page title

Example prompts:

  • “Update the Deployment Notes wiki page in project redmine”
  • “Replace the API Documentation wiki page content and add a version comment”

Cursor mcp.json (team members)

Add to ~/.cursor/mcp.json (or project .cursor/mcp.json).

  • x-api-key — same TEAM_SECRET for everyone (from admin).
  • x-redmine-api-key — each person’s own key from Redmine → My account → API access key.
{
  "mcpServers": {
    "redmine": {
      "url": "https://mcp.yourcompany.com/sse",
      "headers": {
        "x-api-key": "shared_team_secret_from_admin",
        "x-redmine-api-key": "your_personal_redmine_api_key"
      }
    }
  }
}

For local development:

{
  "mcpServers": {
    "redmine-local": {
      "url": "http://localhost:3456/sse",
      "headers": {
        "x-api-key": "shared_team_secret_from_admin",
        "x-redmine-api-key": "your_personal_redmine_api_key"
      }
    }
  }
}

get_my_issues and other tools use the connected user’s Redmine identity, not an admin key on the server.

Health check

curl -s http://localhost:3456/health | jq

Returns server name, version, Redmine URL (configured), active SSE session count, and uptime. No API key required on /health.

Staging deployment

Option A — Docker (recommended)

cp .env.example .env
# fill in production values
docker compose up -d --build
docker compose logs -f

Option B — PM2 on the host

npm install --omit=dev
npm install -g pm2
pm2 start index.js --name redmine-mcp
pm2 save
pm2 startup

nginx reverse proxy

  1. Copy nginx.conf to /etc/nginx/sites-available/redmine-mcp
  2. Replace mcp.yourcompany.com with your domain
  3. Enable site and reload nginx
  4. Run certbot for TLS: certbot --nginx -d mcp.yourcompany.com

Ensure SSE locations keep proxy_buffering off and long proxy_read_timeout.

API endpoints

Method Path Auth Purpose
GET /sse x-api-key + x-redmine-api-key Establish MCP SSE stream (user key bound to session)
POST /messages?sessionId=... x-api-key Client JSON-RPC messages (uses session’s Redmine key)
GET /health none Liveness / status

Security notes

  • Rotate TEAM_SECRET if leaked; share only via your team secret manager
  • Terminate TLS at nginx; do not expose port 3456 publicly without a proxy
  • Each colleague uses their own Redmine API key in Cursor; never commit keys to git
  • Rotate TEAM_SECRET if leaked; rotate personal Redmine keys if compromised

License

ISC

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选