mcp-mockuuups
Enables searching thousands of device and print mockups and rendering screenshots or uploaded images into them via the Mockuuups Studio API.
README
mcp-mockuuups
MCP server for Mockuuups Studio — search ~5,300 device and print mockups, then render a screenshot or your own image into them.
One design — the WTDIB Berlin city guide — rendered into four mockups from a single photoshoot, so the room stays put while the device changes. Two tool calls, no image hosting anywhere.
![]() |
![]() |
ipad-air |
macbook-pro-14 |
![]() |
![]() |
iphone-15-pro |
television |
Why this exists
Mockuuups ship their own hosted MCP server
at https://mcp.mockuuups.studio/mcp. It exposes a single generate_mockup tool
that needs a mockup id you already know and an image you have already hosted
somewhere public.
This server wraps the underlying REST API instead, and closes the two gaps that made the hosted one awkward in practice:
- You can search. The upstream catalog endpoint accepts no search parameters
at all —
q,type,familyandtagare silently ignored and every request returns the same unfiltered page. The whole catalog is fetched once and searched locally, so "a tablet on a desk" or "poster" actually finds something. - You can upload. Mockuuups renders from a URL only. Hand this server raw image bytes and it stages them under a short-lived unguessable link for the renderer to fetch, so a local design needs no bucket, no CDN and no hosting.
Rendering an image you hold locally
Mockuuups renders from a URL only. Pass image_base64 and this server stages the
bytes under a short-lived unguessable link, lets the renderer fetch it, and lets
it expire — no bucket, no CDN, no hosting account.

The iPad render above, uploaded from disk and rendered into a framed A3 poster.
Tools
| Tool | What it answers |
|---|---|
search_mockups |
Which mockup should I use? Free-text search over the whole catalog, with device-word aliases ("tablet", "poster", "laptop") and family/type/tag filters. |
create_mockups |
Put this design into these mockups. Takes a screenshot_url, image_url or image_base64, renders across several mockups concurrently. |
get_renders |
Did those renders finish? Polls anything that outran the inline wait budget. |
account_status |
How many credits are left, and what can this plan actually do? |
Rendering one design across devices
Scenes shot together share a tag, so the way to get a consistent look across devices is to search one, then filter by its tag:
search_mockups(query="ipad", tag="update-august-2024-meeting-room")
create_mockups(
mockup_ids=["Zkn1GMTfiAFX5ZOn", "Zkn2DsTfiAFX5ZPD", "Zkn15MTfiAFX5ZO_"],
screenshot_url="https://wtdib.cdit-works.de/",
)
Configuration
See .env.example. The two that matter:
MOCKUUUPS_API_KEY— a developer key from mockuuups.studio/developers.PUBLIC_BASE_URL— this server's public origin. Uploads need it, because Mockuuups' renderer fetches the staged image back over the public internet. Screenshot and image-URL renders work without it.
Plan limits worth knowing
The API bills in credits: one render = 1 credit, +1 for a website screenshot, +1 for hi-res. Only successful renders are charged.
Two behaviours will bite you if you don't know them:
- Omitting
sizemeans hi-res, which hard-fails withfeature-not-availableon any plan without it. This server always sendssizeexplicitly, capped byMOCKUUUPS_MAX_SIZE(default 1000, the Trial ceiling). Raise it when the account has thehiresfeature. - On plans with
cdn-temporary, delivery links expire after ~24 hours. Download anything worth keeping.account_statusreports this.
Development
uv sync
uv run pytest
uv run mcp-mockuuups # stdio
TRANSPORT=http uv run mcp-mockuuups # streamable-http on /mcp
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
E2B
Using MCP to run code via e2b.



