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

@loftlyy/mcp

v0.1.0

Published

MCP server for Loftlyy brand identity data — search, explore, and generate branding guides

Readme

@loftlyy/mcp

MCP (Model Context Protocol) server for the Loftlyy brand identity database. Search, explore, and generate branding guides powered by real-world brand data.

What is Loftlyy?

Loftlyy is a brand identity reference — like Mobbin but for branding. It catalogs colors, typography, logos, and design systems for 50+ brands. This MCP server makes that data directly accessible to LLMs.

Quick Start

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "loftlyy": {
      "command": "npx",
      "args": ["-y", "@loftlyy/mcp"]
    }
  }
}

Claude Code

claude mcp add loftlyy -- npx -y @loftlyy/mcp

Cursor / Other MCP Clients

Use stdio transport with npx -y @loftlyy/mcp.

Tools

| Tool | Description | | ---------------- | --------------------------------------------------------------------------- | | list-brands | List all brands with name, industry, categories, and summaries | | get-brand | Get complete brand profile by slug (colors, typography, assets, philosophy) | | search-brands | Search by text keywords or hex color codes | | filter-brands | Filter by industry, tags, color families, typography styles | | similar-brands | Find similar brands using weighted scoring algorithm | | brand-palette | Get a brand's color palette with hex codes and usage | | brand-facets | Get all available filter values |

Example Usage

"What colors does Stripe use?" → The LLM calls brand-palette with slug stripe

"Find brands similar to Apple" → The LLM calls similar-brands with slug apple

"Show me fintech brands with blue color schemes" → The LLM calls filter-brands with industries: ["fintech"] and colorFamilies: ["blue"]

Resources

| URI Pattern | Description | | ---------------- | --------------------------------------- | | brand://{slug} | Complete brand identity profile as JSON |

Resources are application-controlled data that clients can subscribe to. Each brand is available as a brand://{slug} resource containing the full brand profile.

Prompts

| Prompt | Description | | ------------------------- | -------------------------------------------------------------------------------- | | generate-branding-guide | Generate a complete branding guide for your company inspired by reference brands | | compare-brands | Compare branding strategies of 2-5 brands side by side | | suggest-color-palette | Get data-driven color palette suggestions based on real brand palettes |

Generate Branding Guide

The primary workflow — create a brand identity for your company:

  1. Use list-brands or search-brands to find reference brands
  2. Select the generate-branding-guide prompt
  3. Provide your company details and reference brand slugs
  4. Get a complete branding guide with colors, typography, logo direction, and brand voice

Compare Brands

Analyze how 2-5 brands approach their visual identity differently — color strategies, typography choices, and brand positioning.

Suggest Color Palette

Get 3 unique palette suggestions grounded in real brand color data. Filter by color family, reference brand, or industry.

Configuration

| Environment Variable | Description | Default | | -------------------- | ------------------------------------------- | --------------------- | | LOFTLYY_SOURCE | Data source: local or remote | Auto-detected | | LOFTLYY_BASE_URL | Remote API base URL | https://loftlyy.com | | LOFTLYY_ROOT_DIR | Root directory for local source | process.cwd() | | LOFTLYY_STRICT | Fail on invalid brand data (true/false) | false |

Data Source

  • Remote (default): Fetches brand data from https://loftlyy.com/api/cli
  • Local: Reads brand data from TypeScript files in data/brands/ (auto-detected when running inside the Loftlyy repo)

Development

Build

cd mcp
npm install
npm run build

Test with MCP Inspector

LOFTLYY_SOURCE=local \
LOFTLYY_ROOT_DIR=/path/to/loftlyy \
npx @modelcontextprotocol/inspector node /path/to/loftlyy/mcp/dist/index.js

Local Development Config

{
  "mcpServers": {
    "loftlyy": {
      "command": "node",
      "args": ["/path/to/loftlyy/mcp/dist/index.js"],
      "env": {
        "LOFTLYY_SOURCE": "local",
        "LOFTLYY_ROOT_DIR": "/path/to/loftlyy"
      }
    }
  }
}

When running the built server from outside the repo root, set LOFTLYY_ROOT_DIR explicitly to your Loftlyy checkout so local mode can read data/brands/ instead of falling back to the client's current working directory.

Publishing

npm --prefix mcp version [patch|minor|major]
npm --prefix mcp publish --access public

License

MIT