Refero MCP
Enables searching the Refero design catalog in plain English and generates DESIGN.md files for any project.
README
<a id="top"></a>
<div align="center">
<img src="https://raw.githubusercontent.com/lorecraft-io/refero-design-mcp/main/.github/banner.png" alt="refero-mcp" width="100%" />
Refero MCP
Search styles.refero.design in plain English and drop a DESIGN.md into any project.
</div>
Quick Navigation
| Link | Section | What it does | Time |
|---|---|---|---|
| What this is | Overview | The catalog, the gap, the wrap | ~1 min |
| Quick install | Setup | One line into Claude Code | ~1 min |
| Usage | Talk to it | Plain-English prompts | ~2 min |
| Tools | Reference | The six tools, one line each | ~1 min |
| Configuration | Setup | Env vars + JSON config | ~1 min |
| How it works | Reference | Cache, embeddings, DESIGN.md generation | ~1 min |
| Troubleshooting | Reference | The likely first three problems | ~1 min |
| License + Author | Meta | MIT | — |
What this is
Refero Styles is a beta catalog of about 200 curated sites where someone has done the painful work of pulling out the colors, typography, spacing, and per-style do/don't guidance. Each entry ships with a designSystem block that's basically a DESIGN.md waiting to happen.
This MCP wraps that catalog so Claude Code can search it in natural language and drop a generated DESIGN.md straight into whatever project you're scaffolding. No browser-tab JSON copy-paste, no hand-rolled token tables.
It's for anyone using Claude Code to spin up a new app, deck, or client project who wants the design language locked down before the first component renders.
<p align="right"><a href="#top">↑ back to top</a></p>
Quick install
One line:
claude mcp add refero -- npx -y fidgetcoding-refero-mcp
Restart Claude Code and start describing the look you want.
If you want vibe search (semantic ranking against each style's poetic northStar summary), pass an OpenAI key:
claude mcp add refero --env OPENAI_API_KEY=sk-... -- npx -y fidgetcoding-refero-mcp
Without it, search falls back to keyword scoring. Works fine, just less magical.
For claude_desktop_config.json users:
{
"mcpServers": {
"refero": {
"command": "npx",
"args": ["-y", "fidgetcoding-refero-mcp"],
"env": {
"OPENAI_API_KEY": "sk-...",
"REFERO_MCP_VAULT_DIR": "/absolute/path/to/your/vault"
}
}
}
}
<p align="right"><a href="#top">↑ back to top</a></p>
Usage
[!IMPORTANT] You talk. Claude dispatches. No commands, no syntax, no JSON.
Every tool here is wired to plain-English prompts. You don't memorize tool names or build payloads — Claude picks the tool and fills in the parameters.
A few prompts that route cleanly:
"Find me a dark editorial style with a serif and a warm accent."
"Pull the full breakdown for Linear."
"What's similar to Vercel in the Refero catalog?"
"Render Cursor's DESIGN.md — don't save it yet, just show me."
"Save Cursor's DESIGN.md into my PARZVL project."
"Show me only dark-mode brutalist styles, top five."
"Refresh the Refero catalog before we start the design pass."
More worked recipes in docs/USAGE.md.
<p align="right"><a href="#top">↑ back to top</a></p>
Tools
| Tool | What it does |
|---|---|
refero_search |
Natural-language vibe search across the catalog. Embeddings if OPENAI_API_KEY is set, BM25-lite fallback if not. |
refero_get |
Fetch the full design system for one style. Accepts a uuid, hostname (e.g. cursor.com), or site name (e.g. "Cursor"). |
refero_similar |
Refero's own "similar styles" ranking for a given style. Free recommendations from the upstream. |
refero_list |
Browse the local catalog mirror with optional theme/tag filters. Stably ordered. |
refero_design_md |
Render a style as an agent-friendly DESIGN.md (frontmatter, north star, color table, dos/donts). Optionally writes to disk. |
refero_refresh |
Force a full re-fetch of the catalog and overwrite the local mirror. Skips the 24h TTL. |
<p align="right"><a href="#top">↑ back to top</a></p>
Configuration
Everything is optional. Defaults are picked so the MCP just runs.
| Variable | Required | Default | What it does |
|---|---|---|---|
OPENAI_API_KEY |
No | unset | Enables vibe search via text-embedding-3-small. Without it, search falls back to keyword scoring. |
REFERO_API_BASE |
No | https://styles.refero.design |
Override if Refero ever moves the API or you're pointing at a fixture. |
REFERO_CACHE_DIR |
No | ~/.refero-cache |
Where the local catalog mirror, embeddings, and detail cache live. |
REFERO_CACHE_TTL_MS |
No | 86400000 (24h) |
How long a cached page is considered fresh. |
REFERO_MCP_VAULT_DIR |
No (required for project writes) | unset | Absolute path to the vault root that refero_design_md writes into. If unset, the tool returns the markdown but doesn't write to disk. |
A copy-paste .env.example ships in the repo root.
There's no default for
REFERO_MCP_VAULT_DIR. The previous draft hardcoded my laptop path, which worked great for exactly one machine on Earth. The reviewer caught it. Now if you don't set it, the tool just refuses to write — rude, but better than dropping files into a folder that doesn't exist on your computer.
<p align="right"><a href="#top">↑ back to top</a></p>
How it works
There is no public Refero API doc as of writing — the shape was mapped empirically against the live site. The full breakdown is in docs/api-surface.md so future-me doesn't re-discover it.
- Local catalog mirror. Refero exposes
?page=Npagination but silently ignores?search=,?q=, and?colorScheme=. So this MCP walks the pages once, mirrors them locally underREFERO_CACHE_DIR, and runs all filtering and ranking client-side. - Vibe search via
northStar. Every Refero style ships with a one-line poetic summary callednorthStar. WithOPENAI_API_KEYset, the MCP embeds those summaries withtext-embedding-3-smalland ranks by cosine similarity to your query. Without a key, it falls back to keyword scoring onnorthStar+ tags + site name. - DESIGN.md generated locally. Refero does not expose a
/design.mdendpoint. The MCP synthesizes one fromstyle.fullResult.designSystem(dos, donts, tags, theme, role-tagged colors). Output is compatible with the/stitch-design-tasteand/design-taste-frontendskills.
<p align="right"><a href="#top">↑ back to top</a></p>
Troubleshooting
"No styles found" / catalog feels empty. First-run hits a cold cache. Ask Claude to "refresh the Refero catalog" once — it walks the ~10 pages with a polite 250ms gap and writes them to REFERO_CACHE_DIR. After that, search is instant.
Search results feel keyword-y rather than semantic. You probably don't have OPENAI_API_KEY set. Add it to your MCP config and restart, or lean harder on the catalog's vocabulary (industries plus tags like editorial, brutalist, glass).
refero_design_md returns markdown but won't write to disk. REFERO_MCP_VAULT_DIR is unset. Set it to your vault root (absolute path) and the tool will write to <vault>/05-Projects/<NAME>/DESIGN.md. Without it, you get the markdown back in conversation and can paste it wherever.
<p align="right"><a href="#top">↑ back to top</a></p>
License
MIT — see LICENSE for details.
Author
Built by Nate Davidovich / Lorecraft LLC.
- GitHub: lorecraft-io
- npm: lorecraft
- Sister projects: morgen-mcp, motion-mcp
Security: gitleaks scan
This repo ships with a .gitleaks.toml config and a scripts/security-scan.sh
helper that scans the working tree for secrets (GitHub tokens, API keys, JWTs,
private keys, Anthropic keys, etc.).
bash scripts/security-scan.sh
A .husky/pre-commit hook also runs gitleaks protect --staged on every commit
and warn-no-ops if gitleaks isn't installed locally.
If you don't have it yet:
- macOS:
brew install gitleaks - Linux: https://github.com/gitleaks/gitleaks/releases
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.
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.
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.
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.
E2B
Using MCP to run code via e2b.
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.