Design Inspiration MCP Server

Local setup required. This server has to be cloned and prepared on your machine before you register it in Claude Code.
1

Set the server up locally

Run this once to clone and prepare the server before adding it to Claude Code.

Run in terminal
git clone https://github.com/YonasValentin/design-inspiration-mcp-server
cd design-inspiration-mcp-server

Then follow the repository README for any remaining dependency or build steps before continuing.

2

Register it in Claude Code

After the local setup is done, run this command to point Claude Code at the built server.

Run in terminal
claude mcp add -e "SERPER_API_KEY=${SERPER_API_KEY}" design-inspiration -- node "<FULL_PATH_TO_DESIGN_INSPIRATION_MCP_SERVER>/dist/index.js"

Replace <FULL_PATH_TO_DESIGN_INSPIRATION_MCP_SERVER>/dist/index.js with the actual folder you prepared in step 1.

Required:SERPER_API_KEY
README.md

Search design platforms and extract design tokens from live websites.

design-inspiration

MCP server that searches Dribbble, Behance, Awwwards, Mobbin, and Pinterest for UI design inspiration. Built for Claude Code but works with any MCP client.

Uses the Serper API (Google search) with site: filters to scope results to design platforms only. Can also extract actual design tokens (colors, fonts, spacing) from any live website via headless browser.

Find inspiration, then extract exact tokens from sites you like.

Why

I wanted Claude to pull design references while building UI — look at real Dribbble shots, find color palettes, browse layout patterns — without leaving the terminal. The existing options either required Playwright (heavy) or didn't return image URLs I could actually download and view.

The search side wraps Serper's image and web search endpoints with pre-configured site filters. Simple.

The token extraction side came from a different itch: I'd find a site I liked on Dribbble, open it, and then manually eyedrop colors and inspect fonts. Now I just point design_extract_tokens at the URL and get the exact values back.

Tools

design_search_images — Image search across design platforms. Returns image URLs, dimensions, source links. Good for finding visual references for a specific UI pattern.

design_search_references — Web search scoped to design sites. Returns article titles, snippets, links. Better for finding case studies, design system docs, or pattern explanations.

design_search_styles — Searches for a specific aesthetic direction (color palette, typography, layout, animation). Runs both image and web search in parallel, returns combined results.

design_extract_tokens — Extracts design tokens from a live website. Point it at any URL and get back colors, typography, spacing, border radii, and shadows. Supports dark_mode and mobile flags. Requires dembrandt installed globally (npm install -g dembrandt).

The three search tools accept a sites parameter to filter to specific platforms, and a num parameter to control result count.

Setup

You need a Serper API key for the search tools. Free tier gives you 2,500 searches with no credit card.

  1. Sign up at serper.dev
  2. Copy your API key

For token extraction, install dembrandt globally:

npm install -g dembrandt

Claude Code

claude mcp add design-inspiration -e SERPER_API_KEY=your-key-here -- node /path/to/design-inspiration-mcp-server/dist/index.js

Any MCP client (stdio)

{
  "design-inspiration": {
    "type": "stdio",
    "command": "node",
    "args": ["/path/to/design-inspiration-mcp-server/dist/index.js"],
    "env": {
      "SERPER_API_KEY": "your-key-here"
    }
  }
}

Build from source

git clone https://github.com/YonasValentin/design-inspiration-mcp-server.git
cd design-inspiration-mcp-server
npm install
npm run build

How it actually works

Each tool builds a search query by appending site:dribbble.com OR site:behance.net OR ... to whatever you searched for. Then it hits Serper's /images or /search endpoint and formats the response.

The design_search_styles tool runs both endpoints in parallel (Promise.all) to get images and articles for the same query.

design_extract_tokens shells out to dembrandt (via child_process.execFile) with --json-only, parses the JSON output, and formats it into markdown + structured data. 60-second timeout. No extra npm dependencies — dembrandt runs as a global CLI and child_process is built-in.

Results are returned as both markdown (for display) and structured JSON (for programmatic use). Responses get truncated at 25,000 characters to avoid flooding the context window.

Usage tips

Search for specific UI patterns, not generic terms:

# good
"fintech dashboard dark mode"
"mobile onboarding flow card swipe"
"saas pricing page comparison table"

# too vague
"nice website"
"good design"

You can download the returned image URLs and have Claude view them directly:

curl -sL "https://cdn.dribbble.com/..." -o /tmp/reference.jpg

Then ask Claude to read the image file — it can see and describe the design.

License

MIT

Tools (4)

design_search_imagesImage search across design platforms returning URLs, dimensions, and source links.
design_search_referencesWeb search scoped to design sites for articles, case studies, and documentation.
design_search_stylesSearches for specific aesthetic directions by running image and web search in parallel.
design_extract_tokensExtracts design tokens like colors, typography, and spacing from a live website URL.

Environment Variables

SERPER_API_KEYrequiredAPI key for Serper.dev search services

Configuration

claude_desktop_config.json
{"design-inspiration": {"type": "stdio", "command": "node", "args": ["/path/to/design-inspiration-mcp-server/dist/index.js"], "env": {"SERPER_API_KEY": "your-key-here"}}}

Try it

Find some fintech dashboard dark mode inspiration on Dribbble.
Search for mobile onboarding flow card swipe patterns.
Extract the design tokens including colors and fonts from https://example.com.
Find design system documentation for pricing page comparison tables.

Frequently Asked Questions

What are the key features of Design Inspiration MCP Server?

Searches major design platforms including Dribbble, Behance, Awwwards, Mobbin, and Pinterest.. Extracts design tokens such as colors, typography, spacing, and shadows from live URLs.. Supports dark mode and mobile-specific token extraction.. Provides both markdown and structured JSON output for programmatic use.. Uses Serper API with site-specific filters for high-quality design results..

What can I use Design Inspiration MCP Server for?

Gathering visual references for UI patterns without leaving the terminal.. Quickly inspecting and extracting color palettes and font styles from live websites.. Finding case studies and design system documentation for specific UI components.. Building a library of design inspiration for new product development..

How do I install Design Inspiration MCP Server?

Install Design Inspiration MCP Server by running: claude mcp add design-inspiration -e SERPER_API_KEY=your-key-here -- node /path/to/design-inspiration-mcp-server/dist/index.js

What MCP clients work with Design Inspiration MCP Server?

Design Inspiration MCP Server works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Turn this server into reusable context

Keep Design Inspiration MCP Server docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Need the old visual installer? Open Conare IDE.
Open Conare