Redmine MCP Server

Redmine MCP Server

An MCP server that connects AI assistants to Redmine, enabling issue and project management via natural language.

Category
Visit Server

README

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.

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

  1. Python 3.10+ installed on your machine
  2. uv — a fast Python package manager (install guide)
    • macOS/Linux: curl -LsSf https://astral.sh/uv/install.sh | sh
    • Windows: powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
  3. 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.com with your Redmine URL
  • your-api-key-here with 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_URL is set in the MCP config's env block
"REDMINE_API_KEY environment variable is missing" Ensure REDMINE_API_KEY is set in the MCP config's env block
"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 REDMINE_URL is reachable from your machine
Tools not appearing in Kiro Confirm the mcp.json file is in the right location and "disabled" is false

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]"
pytest

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured