Redmine MCP Server
Provides tools for managing Redmine issues, projects, time entries, and search, enabling AI agents to interact with a Redmine instance via the 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., "@Redmine MCP ServerShow me all open issues in project Alpha"
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.
π¦ Agama β Redmine MCP Server
MCP server for Redmine. Enables AI agents to work with issues using simple natural language commands.
Works just as well as a personal tool for a single developer β or deployed once and shared by the whole team.
ββββββββββββ MCP (stdio) βββββββββββββββββββββββ REST/JSON ββββββββββββ
β Agent β βββββββββββββββΆ β Redmine MCP Server β βββββββββββββΆ β Redmine β
β (client) β βββββββββββββββ β (this project) β βββββββββββββ β server β
ββββββββββββ tool results βββββββββββββββββββββββ HTTP ββββββββββββπ¬ Just ask
"What issues are assigned to me? Sort them by priority."
"Create a bug in the Web project: login button doesn't respond on mobile, mark it urgent."
"Summarize issue #456 and all its subtasks."
"How many hours did I log this week, broken down by project?"
Related MCP server: Redmine MCP Server
Requirements
Node.js 22+
A Redmine instance with the REST API enabled (Administration β Settings β API)
A Redmine API key β go to My account β API access key while signed in
Quick start
Most MCP clients (e.g. Claude Desktop) launch the server for you β configure it once and forget it:
{
"mcpServers": {
"redmine": {
"command": "npx",
"args": ["-y", "@0xkillaflow/agama-redmine-mcp"],
"env": {
"REDMINE_URL": "https://redmine.example.com",
"REDMINE_API_KEY": "your-redmine-api-key"
}
}
}
}For Claude Desktop, this goes in claude_desktop_config.json (Settings β Developer β Edit
Config). Restart the client and the Redmine tools will appear in its tool list.
To run it standalone from a shell instead:
REDMINE_URL=https://redmine.example.com REDMINE_API_KEY=your-redmine-api-key \
npx -y @0xkillaflow/agama-redmine-mcpThe server speaks MCP over stdio and logs to stderr, so stdout stays clean for the protocol.
Configuration
Set via environment variables, validated at startup. See .env.example for a
template.
Variable | Required | Default | Purpose |
| yes | β | Base URL of the Redmine instance |
| yes | β | API key for the acting user |
| no |
| Per-request timeout in milliseconds |
| no | empty | Directories the attachment tools may use |
| no |
|
|
| no |
|
|
File access (REDMINE_ALLOWED_DIRECTORIES)
The attachment tools are the only ones that touch your filesystem, and they may
only touch it inside this allowlist β a :-separated list of absolute directories
(; on Windows). It governs both directions: reads for
redmine_upload_attachment and writes for redmine_download_attachment.
REDMINE_ALLOWED_DIRECTORIES=/Users/you/redmine-files:/tmp/redmine-downloadsIt defaults to empty, which means no local file access at all β both tools
refuse every path until you opt in. That default is deliberate: an agent that can
be talked into uploading a file is an agent that can be talked into uploading
~/.ssh/id_rsa or the .env holding your API key. Allowlist the narrowest
directory that does the job. Paths are fully resolved (.. segments and symlinks
included) before the check, so a symlink inside an allowed directory cannot point
out of it, and downloads never overwrite an existing file.
Tools
Nineteen intent-shaped tools, each tagged with MCP safety annotations. Full reference:
docs/tools.md.
Tool | Kind | Description |
| read | Search/filter issues by status, assignee, tracker, dates⦠|
| read | Full issue detail, optionally with journals and attachments |
| write | Create an issue |
| write | Edit an issue's status, assignee, notes⦠|
| write Β· destructive | Permanently delete an issue β no undo, cascades |
| write | Add/remove a watcher (notification subscription) |
| read | Dependency links of an issue, or one relation by its id |
| write | Link two issues (blocks, precedes, duplicates, relatesβ¦) |
| write Β· destructive | Remove one link β narrow in scope and reversible |
| read | Free-text search across issues, wiki, news, projects |
| read | List visible projects |
| read | Full project detail, trackers/categories/activities |
| read | Query logged time |
| write | Log hours against an issue or project |
| read | "Who am I" β the API key's user, memberships, groups |
| read | Find users by name/status/group β admin-gated on most sites |
| read | Statuses, trackers, priorities, activities, doc categories |
| write | Upload a local file β token for an issue's |
| write | Save an attachment to a local directory (writes to disk) |
Heads up:
redmine_delete_issueis the tool that destroys data β Redmine has no trash, and the delete takes the issue's comments, time entries, attachments, and relations with it. It is annotateddestructiveHint: trueso an MCP client can require confirmation; if your client does not gate on that, treat every call as final.redmine_delete_issue_relationcarries the same annotation but is far narrower: it removes one link between two issues, andredmine_create_issue_relationputs it back in a single call.
Heads up: on write, Redmine silently ignores an unknown
tracker_id,status_id, orfixed_version_idinstead of erroring β always check the returned issue. The same applies tois_private, which is silently dropped if your role lacks the "set public/private" permission.
Security
The server runs locally and acts as a single user: your REDMINE_API_KEY never leaves your
machine except as a request header to your own Redmine instance, and the server can do nothing
your account couldn't already do. Multi-user HTTP transport is planned but not yet implemented β
selecting MCP_TRANSPORT=http exits with a clear error.
Local file access is off by default and confined to
REDMINE_ALLOWED_DIRECTORIES when you enable it. Nothing
else in the server reads or writes your filesystem.
Troubleshooting
Symptom | Likely cause |
Client shows no tools | Something besides JSON-RPC is writing to stdout β check any wrapper |
Exits immediately on startup | A required env var is missing or invalid; the error names it |
| API key missing/wrong, or REST API disabled on the Redmine side |
| The key's user lacks permission for that action |
| The id doesn't exist or isn't visible to the key |
| Redmine rejected the write β check the field-level messages returned |
Documentation
docs/architecture.mdβ design and request lifecycledocs/tools.mdβ generated per-tool referencedocs/adding-a-tool.mdβ recipe for adding a new toolCONTRIBUTING.mdβ dev setup and contribution guide
Development
npm install # install dependencies
npm run dev # watch-run the stdio server
npm test # run the test suite
npm run build # bundle to dist/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
- AlicenseBqualityBmaintenanceEnables 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.3336Apache 2.0
- AlicenseAqualityCmaintenanceEnables AI agents to interact with Redmine API for managing tickets, projects, users, and time entries. Supports comprehensive operations including issue creation/updates, project management, time logging, and search with dual authentication (Basic Auth + API Key).1436MIT
- 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.13MIT
- Alicense-qualityDmaintenanceEnables AI applications to interact with Redmine project management systems for issue tracking, time logging, and project management through natural language.16MIT
Related MCP Connectors
Task manager your agent can fully operate: boards, tasks, sprints, roles, worklogs, day planner.
Persistent memory and knowledge management for AI agents with semantic search and 50+ tools.
Connect AI assistants to ITM Platform projects, tasks, budgets, risks, and team workload.
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/0xkillaflow/agama-redmine-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server