ReviewLens MCP Server
Provides tools for reviewing pull requests on GitHub, including listing PRs, fetching metadata, files, diffs, searching code, and assembling structured review reports.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ReviewLens MCP ServerReview pull request #42 for potential issues."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ReviewLens MCP
A secure, explainable MCP server for AI-assisted GitHub pull-request review.
ReviewLens exposes seven typed, read-only tools that collect evidence from pull requests. It separates deterministic evidence collection from model interpretation, treats repository content as untrusted data, and includes a credential-free simulated provider and web demo.

Why it exists
AI review assistants often collapse retrieval, interpretation, and action into one opaque step. ReviewLens keeps those concerns separate so tool calls are auditable, contracts are testable, and no model can mutate a repository through this server.
Related MCP server: pr-forge
Product tour
The deterministic demo completes a realistic pull-request review without requiring a GitHub token. It exposes the collected evidence, related tests, risk level, and any instruction-like content found in untrusted repository data.

The tool surface is intentionally small: seven operations with explicit inputs and one responsibility each. The architecture keeps MCP at the adapter boundary and isolates review logic from GitHub access.

The security model is visible rather than implied: least privilege, bounded evidence, untrusted-content handling, and explicit failures. A restrained pixel-art signature connects the project to its creator without competing with the engineering content.

Quick start — demo mode
python -m venv .venv
# Windows: .venv\Scripts\activate
# macOS/Linux: source .venv/bin/activate
python -m pip install -e ".[dev]"
pytest
reviewlens-demoOpen http://127.0.0.1:8000. The demo always uses deterministic fixture data.
Run the MCP server
reviewlens-mcpThe default transport is stdio.
Tools
Tool | Purpose |
list_pull_requests | List open pull requests |
get_pull_request | Fetch PR metadata |
get_pull_request_files | Collect changed files and patches |
get_pull_request_diff | Return a bounded, redacted diff |
search_repository_code | Search repository code |
find_related_tests | Locate tests connected to changed paths |
build_review_report | Assemble deterministic structured evidence |
Live mode
Copy .env.example to .env, set REVIEWLENS_MODE=live, and optionally configure a fine-grained token or GitHub App installation token with read-only Contents and Pull requests permissions. Tokens remain server-side.
Architecture and security
See docs/architecture.md, docs/security.md, and docs/adr/. The MVP contains no write-capable provider method, MCP tool, or demo endpoint.
Verification
ruff check .
mypy src
pytestDocumentation
Spanish: README.es.md
Recording guide: docs/demo-recording.md
Limitations: docs/limitations.md
Author
Built by Paula García Fernández.
Copyright
Copyright © 2026 Paula García Fernández. All rights reserved. The repository is viewable as a personal portfolio and technical demonstration; reuse requires prior written permission. See COPYRIGHT.md. Audio is intentionally absent from v1.
This server cannot be deployed
Maintenance
Related MCP Connectors
Screens public GitHub repos and PRs to generate risk maps, findings, and merge-readiness signals.
Versioned artifact review for people and AI agents, with contextual comments and human control.
Read-only AI coding tools for change verification, release readiness, capacity, and guidance.
AI-native git hosting — repos, PRs, issues, CI gates, and AI code review over MCP (60 tools).
Related MCP Servers
- FlicenseAqualityCmaintenanceEnables LLM clients to list, read, review, and comment on GitHub pull requests, turning an AI assistant into a fully capable code reviewer.61-
- AlicenseNot gradedqualityBmaintenanceProvides AI agents with a secure PR review gateway through 9 MCP tools for managing pull requests, including context retrieval, diff, checks, and merge with two-layer access control.12 npmMIT

ReviewGuard MCPofficial
AlicenseNot gradedqualityAmaintenanceEnables AI agents to safely work on GitHub PR reviews behind a safety boundary, creating draft reviews and optionally submitting them with fixed guardrails, without exposing write tokens.48 npm4MIT- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to autonomously review GitHub Pull Requests by listing PRs, retrieving diffs, and submitting structured reviews.-