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
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。