OpenProject MCP

by AndyEverything

450 downloads
Not rated
GitHub

About

A Model Context Protocol (MCP) server that provides seamless integration with OpenProject API v3.

Details

Author
AndyEverything
Downloads
450
Categories
Other

- Full OpenProject API v3 integration
- List, create, update, and delete work packages
- List and create projects with filtering
- Manage users, memberships, and roles
- Time entry creation and management
- Proxy support and configurable logging
- API key–based secure authentication

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 OpenProject MCP
    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 uv (Python package manager), clone the repository, run uv sync to install dependencies, copy env_example.txt to .env and set OPENPROJECT_URL and OPENPROJECT_API_KEY, then start the server with uv run python openproject-mcp.py. For Claude Desktop, add the server configuration pointing to the Python executable or uv to the claude_desktop_config.json file.

Claude Desktop / Cursor

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

{
    "mcpServers": {
        "openproject mcp": {
            "openproject": {
                "command": "/path/to/your/project/.venv/bin/python",
                "args": [
                    "/path/to/your/project/openproject-mcp.py"
                ]
            }
        }
    }
}

McpServers

{
    "openproject": {
        "command": "/path/to/your/project/.venv/bin/python",
        "args": [
            "/path/to/your/project/openproject-mcp.py"
        ]
    }
}

OpenProject MCP Server

A Model Context Protocol (MCP) server that provides seamless integration with OpenProject API v3. This server enables LLM applications to interact with OpenProject for project management, work package tracking, and task creation.

Features

- πŸ”Œ Full OpenProject API v3 Integration
- πŸ“‹ Project Management: List and filter projects
- πŸ“ Work Package Management: Create, list, and filter work packages
- 🏷️ Type Management: List available work package types
- πŸ” Secure Authentication: API key-based authentication
- 🌐 Proxy Support: Optional HTTP proxy configuration
- πŸš€ Async Operations: Built with modern async/await patterns
- πŸ“Š Comprehensive Logging: Configurable logging levels

Prerequisites

- Python 3.10 or higher
- uv (fast Python package manager)
- An OpenProject instance (cloud or self-hosted)
- OpenProject API key (generated from your user profile)

Installation

1. Install uv (if not already installed)

macOS/Linux:

curl -LsSf https://astral.sh/uv/install.sh | sh

Windows:

powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

Alternative (using pip):

pip install uv

2. Clone and Setup the Project

git clone https://github.com/yourusername/openproject-mcp.git
cd openproject-mcp

3. Create Virtual Environment and Install Dependencies

```bash

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.