mcp_planio
0
This project is an MCP server designed to read and search issues from plan.io using tools compatible with Claude Desktop. It requires installation of dependencies including Python and specific configurations, and it enhances workflow by integrating issue management into MCP-enabled environments.
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
-
Install Claude Desktop (or another MCP-enabled AI tool)
- Download Claude for Desktop
- Follow the current installation instructions: Installing Claude Desktop
-
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
-
Install uv:
- Open Command Prompt as Administrator
- Run
pip install --user uv
- Verify installation with
uv --version
macOS
-
Install Claude Desktop (or another MCP-enabled AI tool)
- Download Claude for Desktop
- Follow the current installation instructions: Installing Claude Desktop
-
Install Python 3.10 or higher:
- Using Homebrew:
brew install python
- Verify installation with
python3 --version
- Using Homebrew:
-
Install uv:
- Using Homebrew:
brew install uv
- Alternatively:
pip3 install --user uv
- Verify installation with
uv --version
- Using Homebrew:
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>"
}
}
}
}