Redmine
About
Integrates with Redmine to enable project management tasks like accessing project details and creating issues through a custom API built on the node-redmine library.
Details
- Author
- ilask
- Repository
- papunoko/Redmine-MCP
- GitHub stars
- 1
- Categories
- Productivity, Design, Developer Tools, AI, Infrastructure, API, Project Management
Jump to
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
RedmineCommand (node, npx, python, etc.)nodeArguments-
Argument 1
C:\Users\yourusername\path\to\Redmine-MCP\server.js
Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
-
Argument 1
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
1. Set environment variables:
Create a .env file in the root of the project directory and add the following, replacing the placeholders with your actual Redmine hostname and API key:
REDMINE_HOST=your-redmine-host.com
REDMINE_API_KEY=your-redmine-api-key
Important: Do not commit your .env file to version control! It contains sensitive information. The .gitignore file included in this repository should prevent it from being committed.create_issue
Create a new issue in Redmine. Parameters: project_id (string, required), subject (string, required), description (string, required)
create_issue: This tool allows you to create a new issue in Redmine. It takes the following parameters:
project_id (string, required): The ID of the project where the issue should be created.
subject (string, required): The subject of the issue.
description (string, required): The description of the issue.
You can use the use_mcp_tool tool in Cline to call this tool. For example:
<use_mcp_tool>
<server_name>redmine-server</server_name>
<tool_name>create_issue</tool_name>
<arguments>
{
"project_id": "456",
"subject": "My New Issue",
"description": "This is a test issue created via Cline."
}
</arguments>
</use_mcp_tool>
(Replace 456 with a valid project ID). This will create a new issue in the specified project and return the issue details as JSON.Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"redmine": {
"env": {},
"args": [
"C:\\Users\\yourusername\\path\\to\\Redmine-MCP\\server.js"
],
"command": "node"
}
}
}
Linux
{
"env": [],
"args": [
"C:\\Users\\yourusername\\path\\to\\Redmine-MCP\\server.js"
],
"command": "node"
}
Macos
{
"env": [],
"args": [
"C:\\Users\\yourusername\\path\\to\\Redmine-MCP\\server.js"
],
"command": "node"
}
Windows
{
"env": [],
"args": [
"C:\\Users\\yourusername\\path\\to\\Redmine-MCP\\server.js"
],
"command": "node"
}
Integrates with Redmine to manage projects and issues through the Cline VS Code extension.
This is a custom MCP (Model Context Protocol) server that integrates with Redmine, allowing you to interact with your Redmine projects and issues through the Cline VS Code extension.
- Node.js:You need Node.js (version 18 or newer) installed on your system.
- Redmine Instance:You need a running Redmine instance with the REST API enabled.
- Redmine API Key:You need an API key for your Redmine user account. You can find this in your Redmine account settings (usually under "My Account" -> "API access key").
- Cline:You need the Cline VS Code extension installed and configured.
- Clone the repository:
git clone https://github.com/ilask/Redmine-MCP.git cd Redmine-MCP
-
Set environment variables:Create a.envfile in the root of the project directory and add the following, replacing the placeholders with your actual Redmine hostname and API key:
REDMINE_HOST=your-redmine-host.com REDMINE_API_KEY=your-redmine-api-key
Important:Do not commit your.envfile to version control! It contains sensitive information. The.gitignorefile included in this repository should prevent it from being committed.
-
Open Cline Settings:In VS Code, open the Cline extension and go to the MCP Server tab.
Edit MCP Settings:Click "Edit MCP Settings" to open thecline_mcp_settings.jsonfile.
Add the server:Add the following entry to themcpServersobject, replacing theargspath with theabsolutepath to theserver.jsfile on your system:
{ "mcpServers": { "redmine-server": { "command": "node", "args": ["C:\\Users\\yourusername\\path\\to\\Redmine-MCP\\server.js"], "disabled": false, "autoApprove": [] } } }
Important:Make sure to use double backslashes (\\) in the path on Windows.
Save:Save thecline_mcp_settings.jsonfile. Cline should automatically detect the changes and start the server.
-
redmine://projects/{project_id}:This resource represents a Redmine project. Replace{project_id}with the actual ID of a project in your Redmine instance. You can use theaccess_mcp_resourcetool in Cline to read the details of a project. For example:
<access_mcp_resource> <server_name>redmine-server</server_name> <uri>redmine://projects/123</uri> </access_mcp_resource>
(Replace123with a valid project ID). This will return the project details as JSON.
-
create_issue:This tool allows you to create a new issue in Redmine. It takes the following parameters:
- project_id(string, required): The ID of the project where the issue should be created.
- subject(string, required): The subject of the issue.
- description(string, required): The description of the issue.
You can use theuse_mcp_tooltool in Cline to call this tool. For example:
<use_mcp_tool> <server_name>redmine-server</server_name> <tool_name>create_issue</tool_name> <arguments> { "project_id": "456", "subject": "My New Issue", "description": "This is a test issue created via Cline." } </arguments> </use_mcp_tool>
(Replace456with a valid project ID). This will create a new issue in the specified project and return the issue details as JSON.
- Connection closed error:If you see an error like "MCP error -1: Connection closed", make sure that yourREDMINE_HOSTandREDMINE_API_KEYenvironment variables are correctly set. Also, ensure that your Redmine instance is accessible from your computer.
- Check server logs:If you encounter issues, check the server's output in the VS Code terminal for any error messages. The server logs errors to the console.
The 1Password MCP server creates a bridge that allows MCP clients such as Codex and Kiro to manage your 1Password Environments with secure authorization prompts.
This is the 1st, easiest, and cheapest PPT, slides, presentation AI generation MCP Server in the world.
Persistent memory for any AI assistant. Zero token cost until recall. Stores memories in local SQLite, ranks by 6-factor scoring, returns results 79% smaller than JSON. Works with Claude, ChatGPT, Grok, Cursor, Windsurf, and any MCP client.
A MCP server that enables AI assistants to interact with Anki, the spaced repetition flashcard application.
Enables LLM clients to interact with macOS applications through AppleScript. Built using the @beyondbetter/bb-mcp-server library, this server provides safe, controlled execution of predefined scripts with optional support for arbitrary script execution.
An MCP server for WordPress plugin audits
Turn your AI assistant into a digital marketing hub that creates, organizes, and analyzes links and QR Codes on demand.
Connect AI clients to Cal.com scheduling through the Model Context Protocol using the hosted server at mcp.cal.com or a local instance.
Sync Calendars, Scheduling Links, AI Executive Scheduling Assistant, Unified Calendar
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.





