Push HTML prototypes to DesignPin for team review and pull reviewer feedback into your AI.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP server that lets any AI assistant push HTML prototypes to DesignPin for team review and read back reviewer feedback.
DesignPin is a tool for reviewing HTML prototypes with DOM-anchored comments. This package wraps the DesignPin REST API as a Model Context Protocol server, exposing three tools β createShareLink, uploadVersion, listComments β to any MCP-compatible AI client.
Once configured, your AI assistant β Claude Desktop, Cursor, VS Code (Copilot), Gemini CLI, or any other MCP-compatible client β can ship a generated HTML prototype to a shareable review link, pull back reviewer comments to incorporate, and push iterations as new versions, all from inside the same conversation that produced the design.
For ChatGPT users: ChatGPT does not currently support MCP servers. Use the direct REST API via Custom GPT Actions instead β no MCP server needed.
The server is invoked by your MCP client; you don't run it directly during normal use. The simplest path is npx invocation, which fetches and runs without a global install:
For most workflows you'll set this in your MCP client's config file rather than running it manually β see Client config examples below.
To verify the install works:
Each key is scoped to a single project. Generate separate keys per client / use case so you can revoke them individually.
Both CLI flags and environment variables are supported. Flags win when both are present.
| CLI flag | Env var | Required | Default | Description |
|---|---|---|---|---|
--api-key | DESIGNPIN_API_KEY | for uploadVersion, listComments | β | Your dp_live_... API key |
--project-id | DESIGNPIN_PROJECT_ID | for uploadVersion | β | Project ID the key is scoped to |
--base-url | DESIGNPIN_BASE_URL | no | https://designpin.pro | API base URL (override for testing) |
--help | β | no | β | Show usage and exit |
--version | β | no | β | Print version and exit |
Security note: CLI flags are visible in
psoutput on multi-user systems. Prefer environment variables on shared machines.
createShareLinkCreate a public review link for an HTML prototype. No project setup required β creates a brand-new throwaway project. Rate-limited to 10 requests/hour per IP.
| Input | Type | Required | Description |
|---|---|---|---|
html | string | yes | Complete HTML document to share |
title | string | yes | Display name for the share, max 80 chars |
authorName | string | no | Author name shown on review page |
Returns: JSON with url, reviewToken, projectId, moduleId, versionId.
Example prompt to your AI assistant:
"Take this HTML and create a DesignPin share link titled 'Landing page hero V3'."
uploadVersionUpload a new HTML version to an existing DesignPin module. Auto-increments versionNumber. Requires the API key + projectId from configuration plus a moduleId from the user.
| Input | Type | Required | Description |
|---|---|---|---|
html | string | yes | Complete HTML for the new version |
moduleId | string | yes | Target module within the configured project |
description | string | no | Version description shown in the sidebar |
Returns: JSON with url, versionId, versionNumber.
Example prompt:
"Push this revised HTML as a new version to module
mod_example_def456with the description 'Address pin #3 contrast feedback'."
listCommentsFetch comments visible on a specific version of a DesignPin module. Uses chronological cutoff semantics matching the web UI: a comment is visible on version V if its origin version is V or any earlier version.
| Input | Type | Required | Description |
|---|---|---|---|
moduleId | string | yes | Module ID |
versionId | string | yes | Specific version to view comments on |
Returns: JSON with a comments array and a summary string like "3 open, 1 resolved".
Example prompt:
"Get the comments on module
mod_example_def456at versionver_example_ghi789and tell me what's blocking approval."
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
Restart Claude Desktop after saving.
Edit ~/.cursor/mcp.json:
Reload Cursor after saving.
Add to your VS Code user settings JSON or a workspace .vscode/mcp.json:
Edit your Gemini CLI config (path varies by version). Both the env-style and the flag-style work; flag-style is shown here:
If you want to call the DesignPin API without an MCP server, the OpenAPI 3.1 spec is published at:
https://designpin.pro/openapi.json
Import it into Postman, generate a client SDK, or use it directly with ChatGPT Custom GPT Actions.
MIT Β© 2026 Omprakash Jha
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/designpin-mcp-server)<a href="https://allmcps.com/mcp/designpin-mcp-server"><img src="https://allmcps.com/api/badge/designpin-mcp-server?style=directory" alt="Designpin MCP Server on AllMCPs" /></a>