mcp-server-redmine
Allows AI assistants to create, update, and query Redmine issues, manage projects, and integrate with Redmine's project management workflow.
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., "@mcp-server-redmineList open issues in project 1"
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.
MCP Server for Redmine
Version | Date | Author | Summary |
1.0 | 2026-07-18 | Claude | Version table added retroactively; documents existing tool set |
1.1 | 2026-07-18 | Claude |
|
Model Context Protocol (MCP) server for Redmine project management integration. Allows AI assistants to create, update, and query Redmine issues directly from conversations.
Features
✅ Create issues with full metadata (priority, estimates, parent tasks)
✅ Update existing issues (status, description, comments)
✅ List and filter issues by project and status
✅ Get detailed issue information
✅ List all accessible projects
Related MCP server: Redmine MCP Server
Installation
cd mcp-server-redmine
npm install
npm run buildConfiguration
Set environment variables for your Redmine instance:
export REDMINE_URL="https://your-redmine.com"
export REDMINE_API_KEY="your-api-key-here"Getting Your Redmine API Key
IMPORTANT: You need the REST API key, not the Atom feed key!
If REST API is Enabled:
Log into Redmine
Go to "My account" (top right)
Look for "API access key" section (right sidebar)
Click "Show" to reveal the key
Copy the 40-character key
If You Only See "Atom Access Key":
The Atom key is for RSS feeds only. You need REST API enabled:
Admin must enable it:
Administration → Settings → API
Check "Enable REST web service"
Save
Then get your key:
Refresh "My account" page
"API access key" section should now appear
Click "Show" and copy
Alternative: Try using Atom key
Some Redmine versions accept it
Test with
npm testIf 401 error, you need proper API key
Usage with Amazon Q
Add to your Amazon Q configuration file (~/.aws/amazonq/mcp.json or IDE settings):
{
"mcpServers": {
"redmine": {
"command": "node",
"args": ["/absolute/path/to/mcp-server-redmine/build/index.js"],
"env": {
"REDMINE_URL": "https://your-redmine.com",
"REDMINE_API_KEY": "your-api-key-here"
}
}
}
}Available Tools
create_issue
Create a new Redmine issue/task.
Parameters:
project_id(required): Project ID numbertracker_id: Tracker type (1=Bug, 2=Feature, 3=Support) - defaults to 2 (Feature)subject(required): Issue titledescription: Issue description (markdown supported)priority_id: Priority level (1=Low, 2=Normal, 3=High, 4=Urgent, 5=Immediate)estimated_hours: Time estimate in hoursparent_issue_id: Parent issue ID for creating subtasks
Example:
Create a Redmine issue in project 1 titled "Implement ServingsService"
with description "Add quantity scaling logic" and estimate 8 hoursupdate_issue
Update an existing issue.
Parameters:
issue_id(required): Issue ID to updatetracker_id: Change tracker type (1=Bug, 2=Feature, 3=Support)subject: New titledescription: New descriptionstatus_id: Status (1=New, 2=In Progress, 3=Resolved, 5=Closed)priority_id: Priority levelnotes: Add a comment
Example:
Update Redmine issue #123 status to 3 (Resolved) and add note "Implementation complete"list_issues
List issues from a project.
Parameters:
project_id(required): Project IDstatus_id: Filter by status ("open", "closed", or specific ID)limit: Max results (default 25)
Example:
List all open issues in Redmine project 1get_issue
Get detailed information about a specific issue.
Parameters:
issue_id(required): Issue IDinclude_journals: Set totrueto include the comment/note history (author, timestamp, text). Journal entries that only record field changes (status flips, done-ratio edits) are filtered out. Defaultfalseto keep the response small.
Example:
Get details of Redmine issue #123 including its commentslist_projects
List all accessible Redmine projects.
Example:
List all my Redmine projectsExample Workflows
1. Convert Documentation to Tasks
You: "Read PRODUCT_ROADMAP.md and create Redmine issues for all Phase 1 tasks in project 1"
AI:
- Reads PRODUCT_ROADMAP.md
- Extracts Phase 1 tasks
- Creates issues with:
- Subject from task name
- Description from details
- Priority based on roadmap priority
- Estimated hours from effort estimates2. Update Task Status
You: "Mark Redmine issue #45 as resolved since ServingsService is complete"
AI: Updates issue #45 with status_id=3 and adds completion note3. Create Subtasks
You: "Create subtasks for Redmine issue #50 to implement Categories feature:
- Database migration
- Service layer
- Controller updates
- UI components"
AI: Creates 4 subtasks with parent_issue_id=504. Sprint Planning
You: "List all open issues in project 1 and create a sprint plan"
AI:
- Lists issues
- Analyzes priorities and estimates
- Suggests grouping and orderingCommon Redmine Status IDs
1 = New
2 = In Progress
3 = Resolved
4 = Feedback
5 = Closed
6 = Rejected
(Your Redmine instance may have different IDs - check your Redmine settings)
Common Redmine Priority IDs
1 = Low
2 = Normal
3 = High
4 = Urgent
5 = Immediate
Troubleshooting
"I only see Atom Access Key, not API Access Key"
See TROUBLESHOOTING_API_KEY.md for complete solutions.
Quick fix: Ask your admin to enable REST API:
Administration → Settings → API → "Enable REST web service"
"REDMINE_URL and REDMINE_API_KEY environment variables are required"
Make sure environment variables are set in your MCP configuration.
"401 Unauthorized"
Check that your API key is correct and has not expired.
"403 Forbidden"
Your API key doesn't have permission for the requested operation.
"404 Not Found"
Project or issue ID doesn't exist or you don't have access.
Development
# Watch mode for development
npm run watch
# Build for production
npm run buildLicense
MIT
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.
Related MCP Servers
- Alicense-qualityBmaintenanceEnables AI assistants to interact with Redmine project management systems, providing comprehensive access to issues, projects, time tracking, users, and wiki pages through natural language commands.Last updated158Apache 2.0
- Alicense-qualityDmaintenanceEnables AI assistants to interact with Redmine instances to manage issues, projects, and users. It provides comprehensive tools for issue tracking, project oversight, and user management through the Redmine REST API.Last updated24MIT
- Alicense-qualityDmaintenanceEnables AI applications to interact with Redmine project management systems for issue tracking, time logging, and project management through natural language.Last updated15MIT
- AlicenseAqualityAmaintenanceEnables AI assistants to manage Redmine issues, projects, time tracking, wiki, and files via the MCP protocol.Last updated331585Apache 2.0
Related MCP Connectors
Connect AI assistants to ITM Platform projects, tasks, budgets, risks, and team workload.
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/mirceaion/mcp-server-redmine'
If you have feedback or need assistance with the MCP directory API, please join our Discord server