OpenProject MCP
About
A Model Context Protocol (MCP) server that provides seamless integration with OpenProject API v3.
Details
- Author
- AndyEverything
- Downloads
- 450
- Categories
- Other
Jump to
- 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:
- 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
OpenProject MCPCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- 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
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



