Redmine MCP Server
Provides tools to manage Redmine issues, projects, time tracking, and wiki pages through the Redmine API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Redmine MCP ServerShow my open issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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_SECRETon server)Per-user Redmine access via
x-redmine-api-keyin each colleague’s Cursormcp.jsonDocker and docker-compose for staging/production
nginx sample config with SSE-friendly proxy settings
Health endpoint for monitoring
Related MCP server: Redmine MCP Server
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.mdLocal 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 installConfigure .env
Variable | Description |
| Shared Redmine base URL for the whole team |
| Shared gate secret; clients send as |
| HTTP port (default |
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 startVerify:
curl -s http://localhost:3456/health
curl -s -H "x-api-key: YOUR_TEAM_SECRET" http://localhost:3456/healthMCP tools
Tool | Description |
| Issues assigned to the API user (id, subject, status, priority, project, description, due_date, estimated_hours) |
| Full issue by ID, including subtasks/children when available |
| Child issues of a parent ( |
| Search by subject keyword; optional |
| Fetch all issues for a project by identifier slug |
| List all projects |
| List workflow statuses |
| Update notes, |
| Create issue ( |
| Log hours on an issue; sets billable hours CF (defaults to |
| Time entries for one issue |
| Current user’s time entries (optional date range) |
| List activity types and IDs for |
| Project time entries with per-user hour summary |
| List wiki pages for a project |
| Fetch one wiki page by project and title |
| Create a wiki page in a project |
| 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 |
| string | yes | Redmine project identifier slug |
| number or string | no | Status filter (default |
| 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 |
| number | yes | Issue to log time on |
| number | yes | Hours spent (must be > 0), e.g. |
| number | no | Activity type ID (default |
| string | no | Worklog comments |
| string | no | Date |
| number | no | Billable hours custom field (defaults to |
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 |
| number | yes | Issue ID |
| number | no | Max results (default |
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 |
| string | no | Start date |
| string | no | End date |
| number | no | Max results (default |
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 |
| number or string | yes | Project numeric ID or identifier slug |
| string | no | Start date |
| string | no | End date |
| number | no | Max results (default |
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 |
| 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 |
| number or string | yes | Project numeric ID or identifier slug |
| string | yes | Wiki page title |
| 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 |
| number or string | yes | Project numeric ID or identifier slug |
| string | yes | Wiki page title |
| string | yes | Wiki page content |
| string | no | Version comment |
| 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 |
| number or string | yes | Project numeric ID or identifier slug |
| string | yes | Wiki page title |
| string | yes | Replacement wiki page content |
| string | no | Version comment |
| 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— sameTEAM_SECRETfor 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 | jqReturns 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 -fOption B — PM2 on the host
npm install --omit=dev
npm install -g pm2
pm2 start index.js --name redmine-mcp
pm2 save
pm2 startupnginx reverse proxy
Copy
nginx.confto/etc/nginx/sites-available/redmine-mcpReplace
mcp.yourcompany.comwith your domainEnable site and reload nginx
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 |
|
| Establish MCP SSE stream (user key bound to session) |
POST |
|
| Client JSON-RPC messages (uses session’s Redmine key) |
GET |
| none | Liveness / status |
Security notes
Rotate
TEAM_SECRETif leaked; share only via your team secret managerTerminate 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_SECRETif leaked; rotate personal Redmine keys if compromised
License
ISC
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Asad-hashmi/MCP-REDMINE'
If you have feedback or need assistance with the MCP directory API, please join our Discord server