npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sparkbites-mcp

v0.1.1

Published

MCP server for Sparkbites — search 500+ curated websites and install DESIGN.md files from within your AI agent.

Readme

sparkbites-mcp

An MCP (Model Context Protocol) server that exposes Sparkbites — a curated directory of 500+ design-forward websites — and the design-bites library of DESIGN.md files to any MCP-compatible AI agent (Claude Desktop, Cursor, Cline, Continue, Zed, and more).

With this server your agent can:

  • Search the Sparkbites directory for inspiration by keyword, tag, tech stack, color, or font.
  • Look up full details for a website (colors, fonts, stacks, screenshot, DESIGN.md availability).
  • List every website that has a DESIGN.md file available.
  • Fetch the raw DESIGN.md content as design reference.
  • Install a DESIGN.md file directly into your project.

Install

No install step — run it with npx:

npx -y sparkbites-mcp

Or install globally:

npm install -g sparkbites-mcp
sparkbites-mcp

The server speaks MCP over stdio, so it's meant to be launched by an MCP client, not run directly.

Client configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "sparkbites": {
      "command": "npx",
      "args": ["-y", "sparkbites-mcp"]
    }
  }
}

Cursor

Open Cursor Settings → MCP → Add new MCP server:

{
  "mcpServers": {
    "sparkbites": {
      "command": "npx",
      "args": ["-y", "sparkbites-mcp"]
    }
  }
}

Cline (VS Code)

Edit Cline's MCP settings and add:

{
  "mcpServers": {
    "sparkbites": {
      "command": "npx",
      "args": ["-y", "sparkbites-mcp"],
      "disabled": false
    }
  }
}

Continue

Add to ~/.continue/config.json:

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "npx",
          "args": ["-y", "sparkbites-mcp"]
        }
      }
    ]
  }
}

Zed

Add to your Zed settings.json:

{
  "context_servers": {
    "sparkbites": {
      "command": {
        "path": "npx",
        "args": ["-y", "sparkbites-mcp"]
      }
    }
  }
}

Tools

search_bookmarks

Search the Sparkbites directory.

| Arg | Type | Description | |---|---|---| | query | string | Text to search in name and description | | tags | string[] | Filter by tag names | | stacks | string[] | Filter by tech stack names | | colors | string[] | Filter by color family (Red, Blue, Purple, etc) | | fonts | string[] | Filter by font family names | | limit | number | Max results (1-50, default 10) |

get_bookmark

Get full details for a single bookmark.

| Arg | Type | Description | |---|---|---| | name | string | Bookmark name (e.g. "Linear", "Stripe") |

list_design_systems

List all websites with an available DESIGN.md file.

| Arg | Type | Description | |---|---|---| | search | string | Fuzzy filter on domain names | | limit | number | Max results (1-300, default 50) |

get_design_md

Fetch the raw DESIGN.md content for a domain.

| Arg | Type | Description | |---|---|---| | domain | string | Domain like linear.app or stripe.com |

install_design_md

Download a DESIGN.md and write it to disk.

| Arg | Type | Description | |---|---|---| | domain | string | Domain like linear.app | | path | string | Optional target path. Defaults to ./DESIGN.md, or ./{domain}/DESIGN.md if one already exists. |

Resources

  • sparkbites://bookmark/{name} — Markdown summary of a bookmark.
  • sparkbites://design-md/{domain} — Raw DESIGN.md content for a domain.

Prompts

  • use-design-reference — Instructs the agent to fetch and follow the DESIGN.md for a given domain during the task.

Configuration

| Env var | Default | Description | |---|---|---| | SPARKBITES_API_URL | https://sparkbites.dev | Override the API base URL (useful for local development). |

Example prompts

"Use the Sparkbites MCP to find 5 minimalist portfolio sites with dark themes."

"Look up Linear on Sparkbites and install its DESIGN.md into my project."

"List every DESIGN.md available and pick one that matches a developer tools aesthetic."

License

MIT