Skip to content
This page was generated and translated with the assistance of AI. If you spot any inaccuracies, feel free to help improve it. Edit on GitHub

OpenPR

OpenPR is an open-source project management platform designed for teams that need transparent governance, AI-assisted workflows, and full control over their project data. It combines issue tracking, sprint planning, kanban boards, and a complete governance center -- proposals, voting, trust scores, veto mechanisms -- into a single self-hosted platform.

OpenPR is built with Rust (Axum + SeaORM) on the backend and SvelteKit on the frontend, backed by PostgreSQL. It exposes a REST API and a built-in MCP server with 34 tools across three transport protocols, making it a first-class tool provider for AI assistants like Claude, Codex, and other MCP-compatible clients.

Why OpenPR?

Most project management tools are either closed-source SaaS platforms with limited customization, or open-source alternatives that lack governance features. OpenPR takes a different approach:

  • Self-hosted and auditable. Your project data stays on your infrastructure. Every feature, every decision record, every audit log is under your control.
  • Governance built in. Proposals, voting, trust scores, veto power, and escalation are not afterthoughts -- they are core modules with full API support.
  • AI-native. A built-in MCP server turns OpenPR into a tool provider for AI agents. Bot tokens, AI task assignment, and webhook callbacks enable fully automated workflows.
  • Rust performance. The backend handles thousands of concurrent requests with minimal resource usage. PostgreSQL full-text search powers instant lookups across all entities.

Key Features

CategoryFeatures
Project ManagementWorkspaces, projects, issues, kanban board, sprints, labels, comments, file attachments, activity feed, notifications, full-text search
Governance CenterProposals, voting with quorum, decision records, veto and escalation, trust scores with history and appeals, proposal templates, impact reviews, audit logs
AI IntegrationBot tokens (opr_ prefix), AI agent registration, AI task assignment with progress tracking, AI review on proposals, MCP server (34 tools, 3 transports), webhook callbacks
AuthenticationJWT (access + refresh tokens), bot token authentication, role-based access (admin/user), workspace-scoped permissions (owner/admin/member)
DeploymentDocker Compose, Podman, Caddy/Nginx reverse proxy, PostgreSQL 15+

Architecture

mermaid
graph TB
    subgraph Client["Clients"]
        BROWSER["Browser<br/>SvelteKit Frontend"]
        AI["AI Assistants<br/>Claude / Codex / Cursor"]
        CLI["CLI / Scripts<br/>curl / custom tools"]
    end

    subgraph Frontend["Frontend (Port 3000)"]
        SVELTE["SvelteKit + TailwindCSS<br/>shadcn-svelte"]
    end

    subgraph Backend["Backend Services"]
        API["API Server (Port 8080)<br/>Rust · Axum · SeaORM"]
        MCP["MCP Server (Port 8090)<br/>HTTP · stdio · SSE"]
        WORKER["Worker<br/>Background Tasks"]
    end

    subgraph Data["Data Layer"]
        PG["PostgreSQL 16<br/>38 Tables · FTS"]
        FS["File Storage<br/>Uploads Directory"]
    end

    BROWSER --> SVELTE
    AI --> MCP
    CLI --> API

    SVELTE --> API
    MCP --> API
    WORKER --> PG

    API --> PG
    API --> FS

Tech Stack

LayerTechnology
BackendRust, Axum, SeaORM, PostgreSQL
FrontendSvelteKit, TailwindCSS, shadcn-svelte
MCPJSON-RPC 2.0 (HTTP + stdio + SSE)
AuthJWT (access + refresh) + Bot Tokens (opr_)
DeploymentDocker Compose, Podman, Caddy, Nginx

Quick Start

bash
git clone https://github.com/openprx/openpr.git
cd openpr
cp .env.example .env
docker-compose up -d

Services start at:

The first registered user automatically becomes admin.

See the Installation Guide for all deployment methods, or the Quick Start to get running in 5 minutes.

Documentation Sections

SectionDescription
InstallationDocker Compose, source build, and deployment options
Quick StartGet OpenPR running in 5 minutes
Workspace ManagementWorkspaces, projects, and member roles
Issues & TrackingIssues, workflow states, sprints, and labels
Governance CenterProposals, voting, decisions, and trust scores
REST APIAuthentication, endpoints, and response formats
MCP ServerAI integration with 34 tools and 3 transports
ConfigurationEnvironment variables and settings
DeploymentDocker and production deployment guides
TroubleshootingCommon issues and solutions
RepositoryDescription
openprCore platform (this project)
openpr-webhookWebhook receiver for external integrations
prxAI assistant framework with built-in OpenPR MCP
prx-memoryLocal-first MCP memory for coding agents

Project Info

  • License: MIT OR Apache-2.0
  • Language: Rust (2024 edition)
  • Repository: github.com/openprx/openpr
  • Minimum Rust: 1.75.0
  • Frontend: SvelteKit

Released under the Apache-2.0 License.