Skip to main content
ClaudeWave
MCP ServersOfficial Registry0 stars0 forksJavaScriptMITUpdated today
Install in Claude Code / Claude Desktop
Method: NPX · miromiro-mcp
Claude Code CLI
claude mcp add miromiro-mcp -- npx -y miromiro-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "miromiro-mcp": {
      "command": "npx",
      "args": ["-y", "miromiro-mcp"],
      "env": {
        "MIROMIRO_API_KEY": "<miromiro_api_key>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Detected environment variables
MIROMIRO_API_KEY
Use cases

MCP Servers overview

# miromiro-mcp

[![npm version](https://img.shields.io/npm/v/miromiro-mcp)](https://www.npmjs.com/package/miromiro-mcp)
[![MIT license](https://img.shields.io/badge/license-MIT-blue)](./LICENSE)

MCP server for the [MiroMiro](https://miromiro.app/api) design-extraction API. Give your AI agent the real design of any live website - brand colors, fonts, design tokens, SVGs, images, Lottie animations, and paste-ready component code - so it builds from actual values instead of guessing from a screenshot.

Works with Claude (web, desktop, Claude Code), ChatGPT, Cursor, Windsurf, Codex, and any MCP client.

## Quick start: remote server (nothing to install)

A hosted server lives at:

```
https://miromiro.app/mcp
```

Paste that URL into any client that accepts a remote MCP server. On first use it opens a one-click MiroMiro sign-in that links a free account (100 credits/month, no card).

- **Claude (web or desktop):** Settings → Connectors → Add custom connector → paste the URL. Or use the [one-click install](https://miromiro.app/api/mcp).
- **ChatGPT:** Settings → Security and login → enable Developer mode, then add the URL as a connector (authentication: OAuth).
- **Cursor (remote):** add `{ "mcpServers": { "miromiro": { "url": "https://miromiro.app/mcp" } } }` to `~/.cursor/mcp.json`.
- **Raw API key instead of OAuth:** append `?access_key=mm_live_...` to the URL, or send it as an `Authorization: Bearer` header.

## Local server (npm)

Prefer a local stdio process with the key in an env var? Get a free key at [miromiro.app/api/dashboard](https://miromiro.app/api/dashboard), then:

**Cursor** (`~/.cursor/mcp.json`) / **Windsurf** (Settings → MCP):

```json
{
  "mcpServers": {
    "miromiro": {
      "command": "npx",
      "args": ["-y", "miromiro-mcp"],
      "env": { "MIROMIRO_API_KEY": "mm_live_your_key" }
    }
  }
}
```

**Claude Code** (run in your terminal, not inside a `claude` session):

```bash
claude mcp add miromiro -s user \
  --env MIROMIRO_API_KEY=mm_live_your_key \
  -- npx -y miromiro-mcp
```

## Tools

| Tool | What it returns | Credits |
|---|---|---|
| `extract_code` | A section of a live page as a paste-ready component (Tailwind, HTML+CSS, JSX or Vue) plus the tokens it uses - start here to rebuild real UI | 25 |
| `extract_brand` | Named color roles (primary/accent/background/text), palette, fonts split by role, logo, social profiles, and a 0-1 confidence score | 15 |
| `extract_design_tokens` | Full token system with usage counts; `format: css` or `tailwind` for paste-ready output | 10 |
| `extract_fonts` | Every font file and family the site loads, with weights, formats, and file URLs | 5 |
| `extract_lottie` | Lottie animation JSON files declared in the page | 3 |
| `extract_svgs` | Inline SVG code (sanitized, paste-ready) plus external SVG file URLs | 1 |
| `extract_assets` | Every image URL on a page, tagged by source, with alt text | 1 |

All tools are read-only and retry-safe. Identical calls within 24 hours are served from cache for free, and failed calls are never billed.

### Controlling output size (remote server)

Remote results are trimmed by default so a big page cannot flood the chat context, and every trimmed response says exactly what was dropped. Two optional arguments loosen it per call:

- `limit` (up to 200) - raise the item cap: "give me 80 SVGs, not 20"
- `full_output: true` - complete long strings, like entire inline SVG markup

The REST API and this local npm server always return everything untrimmed.

## Examples

> "Rebuild stripe.com's pricing section in React"

The agent calls `extract_code` with the URL, gets the section's real markup, colors, fonts, and spacing, and adapts actual values instead of guessing.

> "Build a dashboard in the style of linear.app"

The agent calls `extract_brand` and `extract_design_tokens`, gets Linear's real colors, fonts, and spacing scale, and builds to match.

> "What fonts does apple.com use?"

The agent calls `extract_fonts` and returns every family with its font file URLs and weights.

## Notes

- The API reads static HTML and resolves the full CSS cascade. It does not execute JavaScript, so a fully client-rendered app may return little for images and Lottie (tokens, fonts, brand, and code come from CSS and are unaffected).
- Respect the sites you extract from: check their terms before reusing assets commercially.

## Links

[API docs](https://miromiro.app/api/docs) · [Playground (no account)](https://miromiro.app/api/demo) · [Pricing](https://miromiro.app/api/pricing) · [Changelog](https://miromiro.app/api/changelog) · [Connect page](https://miromiro.app/api/mcp)

MIT © [MiroMiro](https://miromiro.app)

What people ask about miromiro-mcp

What is SoraiaBarroso/miromiro-mcp?

+

SoraiaBarroso/miromiro-mcp is mcp servers for the Claude AI ecosystem with 0 GitHub stars.

How do I install miromiro-mcp?

+

You can install miromiro-mcp by cloning the repository (https://github.com/SoraiaBarroso/miromiro-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is SoraiaBarroso/miromiro-mcp safe to use?

+

SoraiaBarroso/miromiro-mcp has not been audited yet by our security agent. Review the original repository on GitHub before using it in production.

Who maintains SoraiaBarroso/miromiro-mcp?

+

SoraiaBarroso/miromiro-mcp is maintained by SoraiaBarroso. The last recorded GitHub activity is from today, with 0 open issues.

Are there alternatives to miromiro-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy miromiro-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: SoraiaBarroso/miromiro-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/soraiabarroso-miromiro-mcp)](https://claudewave.com/repo/soraiabarroso-miromiro-mcp)
<a href="https://claudewave.com/repo/soraiabarroso-miromiro-mcp"><img src="https://claudewave.com/api/badge/soraiabarroso-miromiro-mcp" alt="Featured on ClaudeWave: SoraiaBarroso/miromiro-mcp" width="320" height="64" /></a>

More MCP Servers

miromiro-mcp alternatives