mcp-redmine
Provides tools for interacting with a Redmine instance, enabling AI agents to manage issues, projects, wiki pages, time tracking, users, groups, and more through the Redmine REST 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., "@mcp-redmineList open issues in the Website project assigned to me."
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-redmine
A Model Context Protocol server that connects Claude (Desktop or Code) — or any other MCP client — to a Redmine instance through its REST API.
It exposes 73 tools covering, in practice, the entire stable Redmine REST API: issues, relations, projects, memberships, versions, categories, users, groups, roles, wiki, time tracking, attachments, project files, news, and search. Point your agent at a Redmine project and let it read and manage issues, log time, edit wiki pages, and administer users — all through natural conversation.
Features
Full read/write coverage of issues, including bulk updates, relations, watchers, and comments.
Project administration: create/update/archive projects, manage members, versions, and categories.
User and group administration, with deliberately no "delete user" or "delete project" tool — see Security.
Wiki, including nested pages and file attachments.
Time tracking, attachments, project files, news, and full-text search.
Readable errors: every failure comes back as a clear sentence pulled from Redmine's own validation response, not a raw stack trace.
Nothing to run: a single Python process talking stdio to your MCP client — no database, no server to host, no Docker required.
Related MCP server: redmine-mcp
Prerequisites
Python 3.10+
A Redmine instance with the REST API enabled:
In Redmine, go to Administration → Settings → API and enable "Enable REST web service" (if not already on).
Go to My account → API access key and copy the value.
Installation
With uv (recommended)
uv tool install mcp-redmineWith pip
pip install mcp-redmineFrom source
git clone https://github.com/alsimoes/mcp-redmine.git
cd mcp-redmine
python3 -m venv venv
source venv/bin/activate # Linux/Mac
# venv\Scripts\activate # Windows
pip install -e .Configuration
The server reads its configuration from two environment variables:
Variable | Required | Description |
| Yes | Base URL of your Redmine instance (no trailing slash). |
| Yes | Your API access key, from My account → API access key. |
| No | Per-request timeout in seconds. Defaults to 15. |
Claude Desktop
Edit (or create) the Claude Desktop configuration file:
Mac:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"redmine": {
"command": "mcp-redmine",
"env": {
"REDMINE_URL": "https://redmine.example.com",
"REDMINE_API_KEY": "your_api_key_here"
}
}
}
}If you installed from source instead of via uv tool install / pip install, point command at the interpreter in your virtual environment and
pass the script as an argument:
{
"mcpServers": {
"redmine": {
"command": "/full/path/to/mcp-redmine/venv/bin/python",
"args": ["-m", "mcp_redmine"],
"env": {
"REDMINE_URL": "https://redmine.example.com",
"REDMINE_API_KEY": "your_api_key_here"
}
}
}
}Restart Claude Desktop afterwards. The tools icon (🔨) should show the Redmine tools as available.
Claude Code
claude mcp add redmine \
--env REDMINE_URL=https://redmine.example.com \
--env REDMINE_API_KEY=your_api_key_here \
-- mcp-redmineConfirm with:
claude mcp listOther MCP clients
Any client that can launch a local process and speak MCP over stdio works the
same way: run mcp-redmine (or python -m mcp_redmine) with REDMINE_URL
and REDMINE_API_KEY set in its environment.
Run locally (optional)
Useful for a quick sanity check before wiring the server into a client:
cp .env.example .env # then edit .env with your values
export $(grep -v '^#' .env | xargs) # or use a tool like direnv
mcp-redmineIf there's no connection error, the server is ready — it waits for MCP messages on stdin/stdout, so seeing nothing happen in the terminal is normal. Press Ctrl+C to stop it.
Usage examples
Once configured, just talk to the agent:
"List the open issues assigned to me in the Website project."
"Create a bug in Website titled 'Login button unresponsive on mobile', priority high."
"Move issues #101, #104, and #110 to In Progress and assign them to Alice."
"Log 3.5 hours on issue #204 for today, activity Development."
"What's on the wiki page 'Deployment' for the Infra project?"
"Search for 'timeout' across all projects."
Available tools
73 tools, grouped by resource. The full reference — signatures, parameters,
return shape, and the caveats that matter (like how precedes reschedules
issues, or that list_custom_fields requires an administrator) — lives in
docs/TOOLS.md.
Resource | Tools |
Issues |
|
Issue relations |
|
Projects |
|
Project members |
|
Versions |
|
Categories |
|
Users |
|
Groups |
|
Roles |
|
Wiki |
|
Time tracking |
|
Attachments |
|
Project files |
|
News |
|
Search |
|
Metadata |
|
API coverage
Redmine API resource | Status |
Issues | Complete (list, read, create, update, bulk, delete, watchers) |
Issue relations | Complete |
Projects | Complete minus deletion |
Project members | Complete |
Versions | Complete |
Issue categories | Complete |
Users | Complete minus deletion |
Groups | Complete |
Roles | Complete (the API is read-only) |
Wiki | Complete, including nesting and attachments |
Attachments | Complete |
Project files | Complete |
News | Complete |
Time tracking | Complete |
Search and saved queries | Complete |
Trackers, statuses, priorities, activities, custom fields | Complete (the API is read-only) |
Document categories | Complete (the API is read-only) |
The two omissions are deliberate. delete_project and delete_user are
irreversible and take other people's content down with them — issues, time
entries, wiki pages, authorship. archive_project and update_user with
status=3 cover the real use case reversibly. Deleting for real remains a web
UI operation, where confirmation is explicit and human. See
SECURITY.md for the full reasoning.
Trackers, issue statuses, priorities, and roles have no write operations in the Redmine API — they're configurable only in Administration. That's not a gap in this server.
Outside the stable REST API, and therefore outside this server's scope: repositories and changesets, wiki page protection, and instance-wide settings screens.
Error messages
Errors are handled centrally: when Redmine rejects a call, the server reads
the response body — that's where the real explanation lives, in the errors
field — and returns that sentence. Without a useful body, it falls back to
the HTTP status with a likely reason:
Status | Message |
401 | invalid or missing API key |
403 | not allowed to perform this operation, or the module is disabled for this project |
404 | not found (check the ID, or this endpoint may not exist in this Redmine version) |
409 | conflict — the resource was changed by someone else |
422 | Redmine rejected the data during validation |
This applies to every tool, read and write alike.
Troubleshooting
"REDMINE_URL and REDMINE_API_KEY must be set": the server checks its configuration at startup and exits immediately with this message rather than starting up broken. Check the
envblock in your MCP client's configuration.Every call fails with a network error: confirm the server process can actually reach
REDMINE_URL— MCP clients run the server as a local process, so it needs the same network access as your machine, not the browser.401 on every call: the API key is wrong, or "Enable REST web service" is off in Redmine's settings.
403 on a specific tool: usually a missing permission on the role of the user who owns the API key.
get_roleshows exactly which permissions a role has.A tool responds 404 that you'd expect to work: a few endpoints (
update_journal_note,update_news/delete_news,update_attachment) were added in specific Redmine versions — see docs/TOOLS.md for the minimum version of each.
Security
See SECURITY.md for the full model. In short: an API key grants access equivalent to the user who owns it, so create a dedicated Redmine user with a role scoped to what you want the agent to do, and use that user's key — don't try to limit the agent by editing this server's code.
Contributing
See CONTRIBUTING.md.
License
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
- Flicense-qualityDmaintenanceAn MCP server providing 63 tools to interact with Redmine instances, covering issues, projects, time entries, and wiki pages. It utilizes streamable HTTP transport and supports per-client authentication for secure management of Redmine resources.Last updated15
- Alicense-qualityAmaintenanceA stateless MCP server for Redmine that allows users to interact with issues, time entries, wiki, projects, and more via their own API keys.Last updated4MIT
- AlicenseBqualityDmaintenanceMCP server for Redmine project management, enabling tools for managing projects, issues, users, time entries, groups, memberships, versions, wiki, news, attachments, search, and Agile sprints via the Redmine REST API.Last updated89241MIT
- Alicense-qualityBmaintenanceMCP server for Redmine that enables interaction with issues, wiki pages, and time entries through natural language.Last updatedISC
Related MCP Connectors
A MCP server built for developers enabling Git based project management with project and personal…
MCP server for generating rough-draft project plans from natural-language prompts.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
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/alsimoes/mcp-redmine'
If you have feedback or need assistance with the MCP directory API, please join our Discord server