MCP Enabled Plan.IO (Redmine) Reader

by karateboss

180 downloads
Not rated
GitHub

About

MCP Enabled Plan.IO (Redmine) Reader is a Model Context Protocol server that exposes tools to read and search Plan.IO (Redmine-based) issues. It is designed for use with MCP-enabled AI assistants like Claude Desktop.

Details

Author
karateboss
Downloads
180
Categories
Other

- Read Plan.IO (Redmine) issues
- Search Plan.IO issues
- Works with Claude Desktop and other MCP-enabled tools
- Runs via uvx with no manual cloning required

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:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name MCP Enabled Plan.IO (Redmine) Reader
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install Python 3.10+ and uv. Configure the server in your MCP client (e.g., claude_desktop_config.json) by providing your Plan.IO URL and API key as environment variables. The server is run via uvx from the GitHub repository.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp enabled plan.io (redmine) reader": {
            "mcp_planio": {
                "command": "uvx",
                "args": [
                    "--from",
                    "git+https://github.com/karateboss/mcp_planio@main",
                    "mcp_planio"
                ],
                "env": {
                    "REDMINE_URL": "https://<your plan.io>",
                    "REDMINE_API_KEY": "<your api key>"
                }
            }
        }
    }
}

McpServers

{
    "mcp_planio": {
        "command": "uvx",
        "args": [
            "--from",
            "git+https://github.com/karateboss/mcp_planio@main",
            "mcp_planio"
        ],
        "env": {
            "REDMINE_URL": "https://<your plan.io>",
            "REDMINE_API_KEY": "<your api key>"
        }
    }
}

MCP Enabled Plan.IO (Redmine) Reader

Model Context Protocol (MCP) server exposes a set of tools to read and search plan.io issues. This has been tested on Claude Desktop.

Installation

Prerequisites

Windows

1. Install Claude Desktop (or another MCP-enabled AI tool) - Download Claude for Desktop - Follow the current installation instructions: Installing Claude Desktop 2. Install Python 3.10 or higher: - Download the latest Python installer from python.org - Run the installer, checking "Add Python to PATH" - Open Command Prompt and verify installation with python --version

3. Install uv:
- Open Command Prompt as Administrator
- Run pip install --user uv
- Verify installation with uv --version

macOS

1. Install Claude Desktop (or another MCP-enabled AI tool) - Download Claude for Desktop - Follow the current installation instructions: Installing Claude Desktop 2. Install Python 3.10 or higher: - Using Homebrew: brew install python - Verify installation with python3 --version

3. Install uv:
- Using Homebrew: brew install uv
- Alternatively: pip3 install --user uv
- Verify installation with uv --version

Configuration

Add the following to your claude_desktop_config.json:

{
    "mcpServers": {
        "mcp_planio": {
            "command": "uvx",
            "args": [
                "--from",
                "git+https://github.com/karateboss/mcp_planio@main",
                "mcp_planio"
            ],
            "env": {
                "REDMINE_URL": "https://<your plan.io>",
                "REDMINE_API_KEY": "<your api key>"
	    }
        }
    }
}
No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.