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

design-style-mcp-server

v1.0.0

Published

Standalone Design Style MCP Server — recommend and retrieve design style tokens for AI content generation

Readme

Design Style MCP Server

MCP TypeScript License

A Model Context Protocol (MCP) server that provides design style intelligence for AI content generation. Ships with 30 curated design styles — each with color palettes, typography, mood tokens, visual directives, and negative prompts ready for image/video generation pipelines.

No AI inference — pure deterministic scoring against style characteristics.

Features

Tools

| Tool | Description | | ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | recommend_style | Deterministic style recommendation based on brand context, campaign objective, target demographic, and season. Returns a top match with scoring reasoning and ranked alternatives. | | get_style | Retrieve structured design tokens for a given style slug: name, description, color palette, typography, mood, visual directives, and negative prompt sections. |

Included Styles (30)

academia, art-deco, bauhaus, bold-typography, botanical, claymorphism, cyberpunk, enterprise, flat-design, industrial, kinetic, luxury, material, maximalism, minimal-dark, modern-dark, monochrome, neo-brutalism, neumorphism, newsprint, organic, playful-geometric, professional, retro, saas, sketch, swiss-minimalist, terminal, vaporwave, web3

Each style includes a full prompt file with design philosophy, color system, typography rules, visual directives, and negative prompts — sourced from designprompts.dev.

Quick Start

Prerequisites

  • Node.js 18+

Install

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

Run

# Development
npm run dev

# Production
npm start

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "design-style": {
      "command": "node",
      "args": ["/path/to/design-style-mcp-server/dist/index.js"]
    }
  }
}

How It Works

recommend_style

Given a brand description, campaign objective, target demographic, and optional season, the server scores all 30 styles against their characteristics (objectives, demographics, industries, moods, seasonal fit) and returns the top match with alternatives.

Input:  { objective: "product_launch", demographic: "gen_z", brand: "streetwear" }
Output: { style: "neo-brutalism", reasoning: "...", alternatives: [...] }

get_style

Given a style slug, returns structured tokens extracted from the style's prompt file:

Input:  { style: "cyberpunk" }
Output: { name, description, colors, typography, mood, promptAdditions, negativePrompt, reference }

Configuration

| Env Var | Default | Description | | -------------------- | --------------------------------------- | ------------------------------------------------- | | DESIGN_STYLES_PATH | ./design-styles (relative to package) | Override path to the design-styles data directory |

Architecture

  • Transport: stdio (standard MCP protocol)
  • Data: 30 style prompt files + descriptions index (plain text, bundled)
  • Scoring: Deterministic fuzzy matching — no AI inference, no network calls
  • Caching: Prompt files are cached in-memory after first read
  • Dependencies: Only @modelcontextprotocol/sdk and zod

Development

# Development server (auto-reload)
npm run dev

# Type check
npx tsc --noEmit

# Build
npm run build

Adding a New Style

  1. Add the slug to DESIGN_STYLE_SLUGS in src/styles.ts
  2. Add characteristics (objectives, demographics, industries, moods) to STYLE_CHARACTERISTICS
  3. Add a description line to design-styles/descriptions.txt
  4. Create a prompt file at design-styles/prompts/{slug}.txt

License

MIT