Skip to content

OpenPR MCP Server v0.1.1

Choose a tag to compare

@github-actions github-actions released this 28 Feb 06:39
· 23 commits to main since this release

OpenPR MCP Server v0.1.1

Pre-built binaries for the OpenPR MCP server.

Downloads

Platform Architecture File
Linux x86_64 openpr-mcp-server-linux-amd64.tar.gz
Linux ARM64 openpr-mcp-server-linux-arm64.tar.gz
macOS Intel openpr-mcp-server-macos-amd64.tar.gz
macOS Apple Silicon openpr-mcp-server-macos-arm64.tar.gz
Windows x86_64 openpr-mcp-server-windows-amd64.zip

Quick Start

# Download and extract (example: macOS Apple Silicon)
tar xzf openpr-mcp-server-macos-arm64.tar.gz

# Configure for your OpenPR instance
export OPENPR_API_URL="https://your-openpr.example.com"
export OPENPR_BOT_TOKEN="opr_your_token"
export OPENPR_WORKSPACE_ID="your-workspace-uuid"

# Run
./mcp-server --transport stdio

MCP Client Config (Claude Desktop / Codex / Cursor)

{
  "mcpServers": {
    "openpr": {
      "command": "/path/to/mcp-server",
      "args": ["--transport", "stdio"],
      "env": {
        "OPENPR_API_URL": "https://your-openpr.example.com",
        "OPENPR_BOT_TOKEN": "opr_your_token",
        "OPENPR_WORKSPACE_ID": "your-workspace-uuid"
      }
    }
  }
}

See README.md for full documentation.