slide-review-mcp
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., "@slide-review-mcpStart a review session for my slides at localhost:5173"
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.
Slide Review MCP
Local MCP server for collecting visual review feedback from a live local HTTP preview target.
It starts or connects to a local preview, serves a browser Review UI, stores Region Annotations in the reviewed project's .review-mcp/ directory, and exposes the finalized Review Session back to agents through MCP tools.
Install From GitHub
git clone https://github.com/liangming99/slide-review-mcp.git
cd slide-review-mcp
npm install
npm run buildConfigure your MCP client to run the built stdio server:
{
"mcpServers": {
"slide-review": {
"command": "node",
"args": ["/absolute/path/to/slide-review-mcp/dist/src/mcpServer.js"]
}
}
}You can also run it directly from GitHub with npx:
npx -y github:liangming99/slide-review-mcpRelated MCP server: Lens
Tools
start_review_session: start a Review Session for a local preview URL or preview command.wait_for_review_submission: wait until the user finalizes the Review Session.stop_review_session: stop a preview process started by this service.list_review_sessions: list stored Review Sessions for a project.read_review_session: read Review Session metadata and annotation summaries.read_annotation_asset: read a saved annotation asset by id.export_review_session: export a Review Session as a ZIP archive.start_follow_up_review_session: open another feedback round from a finalized session.
Example
Start a local app first, or let the MCP tool start it:
{
"projectDir": "D:\\project\\my-slide-deck",
"previewUrl": "http://127.0.0.1:5173/slides.html#slide-1",
"sessionName": "Design review"
}The tool returns a reviewUrl. Open that URL, select regions, add comments, optional replacement text, or image Reference Assets, then finalize. The agent should then call wait_for_review_submission or read_review_session.
Scope
Supported in this MVP:
Local HTTP/HTTPS Preview Targets on loopback hosts.
Comment, Text Revision, and Visual Reference annotations.
Image Reference Assets: PNG, JPEG, WebP, GIF, SVG.
Project-local Session Store under
.review-mcp/sessions/.Open and finalized Review Session states.
Same-origin HTTP proxy and best-effort WebSocket proxy.
ZIP export with JSON data, summary markdown, and annotation assets.
Not supported:
Remote production websites.
file://Preview Targets.Login-state reuse.
Automatic source-code application.
Multi-user collaboration or threaded comments.
Non-image Reference Assets.
Current snapshot limitation: Annotation Snapshot assets are placeholder SVGs that preserve the normalized rectangle, frame size, and URL. They are not real page-pixel screenshots yet.
Development
npm run check
npm run demonpm run check builds TypeScript and runs the Vitest integration suite.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server for visual regression testing: triage a PR's UI diffs from your coding agent.
Experimental MCP server for current empirical verification of explicit public HTTPS endpoint claims.
Host your MCP tool over streamable HTTP in one command.
MCP server for mandates, delegation, policy-gated execution, credential grants, and audit.
Related MCP Servers
- AlicenseAqualityDmaintenanceLocal MCP server for safe GitHub developer workflows. Enables pulling main, creating feature branches, pushing them, and opening ready-for-review pull requests via tools like github_create_feature_branch and github_create_pull_request.671 npmMIT
- AlicenseNot gradedqualityDmaintenanceMCP server for visual feedback, video direction, and QA assertions on web pages, enabling AI agents to read, reply, and resolve annotations in real time.6MIT
- AlicenseNot gradedqualityAmaintenanceMCP server for responsive web app preview and inspection. It allows previewing URLs on multiple device profiles, capturing screenshots, recording walkthroughs, and inspecting local pages with MCP clients.2MIT
- AlicenseAqualityBmaintenanceMCP server for instruckt visual annotations. Enables AI agents to retrieve pending annotations, view screenshots, and resolve annotations.342 npmMIT