Redmine MCP Server
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 ServerList all open issues 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.
Redmine MCP Server
An MCP (Model Context Protocol) server that connects AI assistants like Kiro to your Redmine instance. It exposes 15 tools covering Issues, Projects, and Search — allowing your AI assistant to create issues, update projects, search across resources, and more, all through natural conversation.
What it does
Once configured, you can ask your AI assistant things like:
"List all open issues assigned to me"
"Create a bug report for the login page crash"
"Search for issues related to database migration"
"Archive the old-website project"
"Add John as a watcher on issue #42"
The server handles authentication, pagination, input validation, and error handling automatically.
Related MCP server: @a-bonus/redmine-mcp
Available tools
Domain | Tools |
Issues | list, get, create, update, delete, add watcher, remove watcher |
Projects | list, get, create, update, delete, archive, unarchive |
Search | full-text search across all Redmine resources |
Prerequisites
Python 3.10+ installed on your machine
uv — a fast Python package manager (install guide)
macOS/Linux:
curl -LsSf https://astral.sh/uv/install.sh | shWindows:
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Redmine API key — get yours from your Redmine instance:
Log in to Redmine
Go to My Account (top-right menu)
In the right sidebar, find API access key and click Show
Copy the key
Setup with Kiro
Step 1: Add the MCP server config to Kiro
Create or edit ~/.kiro/settings/mcp.json (this makes it available across all your projects):
{
"mcpServers": {
"redmine": {
"command": "uvx",
"args": ["--from", "git+https://github.com/suryamalempati/redmine-mcp-server.git", "redmine-mcp-server"],
"env": {
"REDMINE_URL": "https://your-redmine-instance.com",
"REDMINE_API_KEY": "your-api-key-here"
},
"disabled": false
}
}
}Replace:
https://your-redmine-instance.comwith your Redmine URLyour-api-key-herewith your Redmine API key
You can also place this in .kiro/settings/mcp.json within a specific workspace if you only want it available there.
Step 2: Open Kiro
The MCP server will start automatically when Kiro launches. You can verify it's working by asking: "List my Redmine projects."
Alternative setup: Local install
If you prefer to run from a local clone instead of uvx:
git clone https://github.com/suryamalempati/redmine-mcp-server.git
cd redmine-mcp-server
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install .Then use this MCP config instead:
{
"mcpServers": {
"redmine": {
"command": "/absolute/path/to/redmine-mcp/.venv/bin/redmine-mcp-server",
"args": [],
"env": {
"REDMINE_URL": "https://your-redmine-instance.com",
"REDMINE_API_KEY": "your-api-key-here"
},
"disabled": false
}
}
}Troubleshooting
Problem | Solution |
"REDMINE_URL environment variable is missing" | Make sure |
"REDMINE_API_KEY environment variable is missing" | Ensure |
"Authentication failed: invalid or expired API key" | Verify your API key is correct in Redmine → My Account → API access key |
"Connection failed" | Check that the |
Tools not appearing in Kiro | Confirm the |
Development
git clone https://github.com/suryamalempati/redmine-mcp-server.git
cd redmine-mcp-server
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
pytestThis 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
- 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/suryamalempati/redmine-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server