redmine-mcp
An 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.
README
redmine-mcp
MCP Server for the Redmine REST API using Streamable HTTP transport.
Built with the Model Context Protocol SDK, this server exposes 63 tools that let any MCP-compatible client (Claude Desktop, MCP Inspector, etc.) interact with a Redmine instance.
Features
- 63 tools covering issues, projects, users, time entries, wiki pages, attachments, and more
- Streamable HTTP transport — single
/mcpendpoint (POST / GET / DELETE) - Per-client authentication — each client supplies its own Redmine API key via
X-Redmine-API-Keyheader - Session management with configurable TTL and automatic eviction
- Security — Helmet headers, rate limiting, API key validation
Prerequisites
- Node.js >= 18
- A Redmine instance with the REST API enabled
Setup
git clone https://github.com/user/redmine-mcp.git
cd redmine-mcp
npm install
Copy the example environment file and fill in your values:
cp .env.example .env
Environment Variables
| Variable | Required | Default | Description |
|---|---|---|---|
REDMINE_BASE_URL |
Yes | — | URL of your Redmine instance |
PORT |
No | 3000 |
Server port |
HOST |
No | 127.0.0.1 |
Server host |
SESSION_TTL_MS |
No | 3600000 |
Session TTL in milliseconds (1 hour) |
LOG_LEVEL |
No | info |
debug | info | warn | error |
Note: There is no
REDMINE_API_KEYin the server config — each MCP client supplies its own key via theX-Redmine-API-Keyheader.
Usage
# Build
npm run build
# Start (production)
npm start
# Development (watch mode)
npm run dev
Client Configuration
Add the server to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"redmine": {
"type": "streamable-http",
"url": "http://localhost:3000/mcp",
"headers": {
"X-Redmine-API-Key": "<your-redmine-api-key>"
}
}
}
}
Available Tools
Issues (7)
list_issues · get_issue · create_issue · update_issue · delete_issue · add_issue_watcher · remove_issue_watcher
Projects (7)
list_projects · get_project · create_project · update_project · archive_project · unarchive_project · delete_project
Users (6)
list_users · get_user · get_current_user · create_user · update_user · delete_user
Groups (7)
list_groups · get_group · create_group · update_group · delete_group · add_group_member · remove_group_member
Time Entries (5)
list_time_entries · get_time_entry · create_time_entry · update_time_entry · delete_time_entry
Versions (5)
list_versions · get_version · create_version · update_version · delete_version
Memberships (5)
list_memberships · get_membership · add_membership · update_membership · remove_membership
Wiki Pages (5)
list_wiki_pages · get_wiki_page · create_wiki_page · update_wiki_page · delete_wiki_page
Issue Relations (4)
list_issue_relations · create_issue_relation · delete_issue_relation · get_relation_type
Issue Categories (4)
list_issue_categories · get_category · create_category · update_category · delete_category
Attachments (3)
upload_file · get_attachment · delete_attachment
Other
list_custom_fields · list_issue_statuses · list_trackers
Project Structure
src/
├── index.ts # Express server, session management
├── config.ts # Environment validation (zod)
├── client/
│ ├── redmine-client.ts # Axios wrapper for Redmine API
│ └── types.ts # Redmine API response types
├── middleware/ # Auth & session guards
├── tools/
│ ├── index.ts # Tool aggregator
│ ├── issues.ts
│ ├── projects.ts
│ └── ... # 14 tool modules
└── utils/
└── errors.ts # Error handling utilities
License
ISC
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.