AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Classmcp

mcp-thedecipherist-classmcp · by TheDecipherist

MCP server for AI-assisted CSS development. 77% token savings with semantic class patterns. Supports Tailwind, Bootstrap, UnoCSS, Tachyons.

No reviews yet
0 installs
28 views
0.0% view→install

Install

$ agentstack add mcp-thedecipherist-classmcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-thedecipherist-classmcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
8mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Classmcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

classmcp

Multi-Framework MCP Server for AI-Optimized CSS Generation

Stop wasting tokens on long utility class strings. Let AI generate code with semantic class names like btn-primary and card - with full SSR safety awareness and optional minification.

Supports Tailwind CSS, Bootstrap 5, UnoCSS, and Tachyons.

The Problem

When AI generates utility-first CSS code, it creates verbose class strings:


  Click me

This wastes:

  • AI tokens - longer context = higher costs
  • Your time - harder to read and debug
  • Bundle size - repeated patterns bloat HTML
  • SSR safety - easy to accidentally use client-only patterns

The Solution

classmcp provides semantic class names to AI assistants:


Click me

Click me

The AI queries available patterns, uses short names, and you get clean, readable code that's SSR-safe.

Installation

For Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "classmcp": {
      "command": "npx",
      "args": ["classmcp"]
    }
  }
}

For other MCP clients

npx classmcp

Features

Multi-Framework Support

Switch between CSS frameworks instantly:

set_framework: "tailwind"   # Default
set_framework: "bootstrap"  # Bootstrap 5
set_framework: "unocss"     # UnoCSS
set_framework: "tachyons"   # Tachyons

SSR Safety

Every pattern is marked for server-side rendering compatibility:

get_ssr_info: "modal-overlay"

→ Status: ⚠️ Requires Client JS
→ Warning: Modal visibility controlled by JS
→ Recommendations: Use useEffect to add client-only classes

Filter for SSR-safe patterns only:

list_classes: { ssrSafeOnly: true }

Minification

Generate ultra-short class names for maximum token savings:

get_class: { name: "btn-primary", minified: true }

→ Class: "a" (saves 11 chars per usage)

Custom Patterns

Define your own semantic class names by creating a .classmcp.json file in your project root:

Simple format:

{
  "customPatterns": [
    { "id": "brand-btn", "classes": "px-4 py-2 bg-brand-600 text-white rounded-lg font-semibold" },
    { "id": "pricing-card", "classes": "p-8 border-2 border-gray-100 rounded-2xl shadow-xl" }
  ]
}

With states and metadata:

{
  "customPatterns": [
    {
      "id": "brand-btn",
      "category": "buttons",
      "description": "Brand-colored primary button",
      "classes": {
        "base": "px-4 py-2 bg-brand-600 text-white rounded-lg font-semibold",
        "hover": "hover:bg-brand-700 hover:shadow-md",
        "focus": "focus:ring-2 focus:ring-brand-300"
      }
    }
  ],
  "overrideBuiltins": false,
  "defaultFramework": "tailwind"
}

Config options: | Option | Description | |--------|-------------| | customPatterns | Array of custom pattern definitions | | overrideBuiltins | If true, custom patterns replace built-ins with same ID | | defaultFramework | Default framework to use (tailwind, bootstrap, unocss, tachyons) |

Pattern options: | Field | Required | Description | |-------|----------|-------------| | id | Yes | Unique identifier (e.g., "brand-btn") | | classes | Yes | CSS classes (string or state object with base/hover/focus/active/disabled) | | category | No | Category for organization (defaults to "custom") | | name | No | Human-readable name (defaults to id) | | description | No | Description of when to use | | frameworks | No | Limit to specific frameworks (e.g., ["tailwind"]) | | ssr.safe | No | Whether pattern is SSR-safe |

Alternative config locations:

  • .classmcp.json (recommended)
  • classmcp.config.json
  • package.json under "classmcp" key

After modifying your config, use the reload_config tool to apply changes without restarting.

Available Tools

| Tool | Description | |------|-------------| | set_framework | Set CSS framework (tailwind, bootstrap, unocss, tachyons) | | get_class | Get utility classes for a semantic name | | list_classes | List available classes (filter by category, SSR-safe) | | search_classes | Search for classes by name or description | | generate_css | Generate CSS file with all class definitions | | get_component | Get complete HTML component examples | | get_ssr_info | Check SSR/hydration safety for a pattern | | list_frameworks | List all available frameworks with statistics | | reload_config | Reload custom patterns from config file | | list_custom_patterns | List all user-defined custom patterns |

Class Categories

  • buttons - btn-primary, btn-secondary, btn-danger, btn-ghost, btn-outline
  • cards - card, card-bordered, card-header, card-body, card-footer
  • forms - input, input-error, label, select, checkbox, textarea, toggle
  • badges - badge-primary, badge-success, badge-warning, badge-danger
  • alerts - alert-info, alert-success, alert-warning, alert-error
  • avatars - avatar-sm, avatar-md, avatar-lg
  • layout - container, flex-center, flex-between, stack, row, grid-2, grid-3
  • typography - heading-xl, heading-lg, heading-md, text-body, text-muted
  • navigation - nav, nav-link, nav-link-active
  • modals - modal, modal-overlay, modal-header, modal-body, modal-footer
  • tables - table, table-header, th, td, tr-hover
  • lists - list, list-item, list-item-hover
  • loading - spinner, skeleton, skeleton-text, skeleton-avatar
  • dividers - divider, divider-vertical

Usage Example

Ask Claude:

> "Create a card with a user profile, showing avatar, name, email, and action buttons"

Claude will use classmcp to generate:


  
    JD
    
      John Doe
      john@example.com
    
  
  
    Message
    Profile
  

Setup Your Project

  1. Generate the CSS:
# Ask Claude to use the generate_css tool, or:
npx classmcp generate-css > src/classmcp.css
  1. Import in your CSS:

Tailwind:

@import "tailwindcss";
@import "./classmcp.css";

Bootstrap:

@import "bootstrap/dist/css/bootstrap.min.css";
@import "./classmcp.css";

Token Savings

| Component | Without classmcp | With classmcp | Minified | Savings | |-----------|------------------|---------------|----------|---------| | Button | 180 chars | 12 chars | 1 char | 99% | | Card | 85 chars | 5 chars | 1 char | 99% | | Input | 145 chars | 6 chars | 1 char | 99% | | Modal | 200+ chars | 12 chars | 1 char | 99% |

Over a full page with 50+ components, this adds up to thousands of tokens saved.

SSR Safety Guide

Safe for SSR (no JS needed)

  • All button variants (hover/focus are CSS pseudo-classes)
  • All card patterns
  • Form inputs (base styling)
  • Typography patterns
  • Layout utilities
  • Badges, alerts

Requires Client JS (may cause hydration issues)

  • modal-overlay - visibility needs JS
  • toggle - checked state
  • spinner - animation timing
  • alert-dismissible - close button

Use ssrSafeOnly: true or check with get_ssr_info when building Next.js/Nuxt/Remix apps.

Framework Statistics

| Framework | Patterns | SSR-Safe | Categories | |-----------|----------|----------|------------| | Tailwind CSS | 70+ | 65+ | 14 | | Bootstrap 5 | 70+ | 65+ | 14 | | UnoCSS | 70+ | 65+ | 14 | | Tachyons | 70+ | 65+ | 14 |

How It Works

┌─────────────┐     ┌─────────────┐     ┌─────────────┐
│   Claude    │────▶│  classmcp   │────▶│  Your Code  │
│             │     │  (MCP)      │     │             │
│ "Make a     │     │             │     │  │
└─────────────┘     └─────────────┘     └─────────────┘
  1. AI asks classmcp for available classes
  2. classmcp returns semantic names + SSR safety info
  3. AI generates code using short class names
  4. You add the generated CSS to your project
  5. Your CSS framework compiles it

Related: classpresso

  • classmcp = AI layer (development time) - helps AI generate clean code
  • classpresso = Build layer (build time) - optimizes existing code

They're complementary:

  1. Use classmcp when writing new code with AI
  2. Use classpresso to optimize existing/legacy code

License

MIT

Links

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.