Issues Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Issues Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server that lets Cursor check GitHub and Codeberg PRs for change requests, reviews, and conversations.
pip install -e .Or with uv (faster):
uv pip install -e .For GitHub:
repo (for private repositories)public_repo (for public repositories only)For Codeberg (optional):
read:repository (minimum)write:repository (if you plan to add write features later)cp .env.example .env
# Edit .env and add your tokens (at least one is required)You need at least one token configured (GitHub or Codeberg) depending on which platforms you want to use.
Add this to your Cursor MCP settings (~/.cursor/mcp.json or workspace settings):
{
"mcpServers": {
"pr-reviews": {
"command": "python",
"args": ["-m", "pr_reviews_mcp.server"],
"env": {
"GITHUB_TOKEN": "your_github_token_here",
"CODEBERG_TOKEN": "your_codeberg_token_here"
}
}
}
}Or if using uv:
{
"mcpServers": {
"pr-reviews": {
"command": "uvx",
"args": ["--from", "/Users/ryanli/Documents/GitHub/issues-mcp", "pr-reviews-mcp"],
"env": {
"GITHUB_TOKEN": "your_github_token_here",
"CODEBERG_TOKEN": "your_codeberg_token_here"
}
}
}
}Once configured, you can ask Cursor things like:
The MCP server will fetch:
See [EXAMPLES.md](EXAMPLES.md) for more detailed usage examples and sample outputs.
Get complete PR review information including all change requests and conversations.
Input:
pr_url: Full PR URL (e.g., https://github.com/owner/repo/pull/123 or https://codeberg.org/owner/repo/pulls/123)Returns:
Quick summary of PR review status.
Input:
pr_url: Full PR URL (GitHub or Codeberg)Returns:
Render PR or commit diff in a beautiful GitHub-style HTML viewer.
Input:
url: PR URL or commit URL (e.g., https://github.com/owner/repo/pull/123 or https://github.com/owner/repo/commit/abc123)Returns:
View local git changes in browser with GitHub-style formatting.
Input:
repo_path: Path to git repository (any directory inside works)diff_type: (optional) Type of diff:"uncommitted" - Working directory changes (default)"staged" - Staged changes ready to commit"branch" - Compare current branch to remotebranch: (optional) Remote branch to compare against (e.g., "origin/main")Returns:
Run directly for testing:
python -m pr_reviews_mcp.serverThe server communicates via stdio using the MCP protocol.
Run the test script to verify platform detection:
pip install -e .
python3 test_platforms.pyGITHUB_TOKEN environment variableCODEBERG_TOKEN environment variableREQUEST_CHANGES vs CHANGES_REQUESTED)Both platforms provide the same features:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.