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

@wireweave/mcp-server

v1.4.0

Published

MCP server for Wireweave DSL - Thin client for API Server

Readme

Overview

This MCP server enables AI assistants like Claude to generate wireframes using the Wireweave DSL. It provides 30 tools for parsing, rendering, validating, and managing wireframes.

Prerequisites

You need a Wireweave API key. Get one from the Dashboard.

Installation

npm install -g @wireweave/mcp-server

Or use directly with npx:

npx @wireweave/mcp-server

Configuration

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "wireweave": {
      "command": "npx",
      "args": ["@wireweave/mcp-server"],
      "env": {
        "WIREWEAVE_API_KEY": "your-api-key"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | WIREWEAVE_API_KEY | Yes | Your API key from Dashboard | | WIREWEAVE_API_URL | No | API server URL (default: https://api.wireweave.org) |

Available Tools (30)

Core Tools (11)

| Tool | Description | |------|-------------| | wireweave_parse | Parse DSL source code into an AST | | wireweave_validate | Validate DSL syntax | | wireweave_grammar | Get DSL grammar documentation | | wireweave_guide | Primary LLM resource - comprehensive language guide | | wireweave_patterns | Get common layout patterns | | wireweave_examples | Get code examples by category | | wireweave_render_html | Render DSL to HTML and CSS | | wireweave_validate_ux | Validate UX best practices | | wireweave_ux_rules | Get UX rule categories | | wireweave_diff | Compare two wireframe sources | | wireweave_analyze | Analyze wireframe statistics |

Cloud Storage Tools (15)

| Tool | Description | |------|-------------| | wireweave_cloud_list_projects | List your projects | | wireweave_cloud_create_project | Create a new project | | wireweave_cloud_update_project | Update project details | | wireweave_cloud_delete_project | Delete a project | | wireweave_cloud_list_wireframes | List saved wireframes | | wireweave_cloud_get_wireframe | Get a specific wireframe | | wireweave_cloud_save_wireframe | Save a new wireframe | | wireweave_cloud_update_wireframe | Update an existing wireframe | | wireweave_cloud_delete_wireframe | Delete a wireframe | | wireweave_cloud_get_versions | Get version history | | wireweave_cloud_restore_version | Restore to a previous version | | wireweave_cloud_diff_versions | Compare two versions of a wireframe | | wireweave_cloud_create_share_link | Create a shareable link | | wireweave_cloud_list_shares | List share links | | wireweave_gallery | Browse public wireframe gallery |

Account & Billing Tools (4)

| Tool | Description | |------|-------------| | wireweave_account_balance | Check credit balance | | wireweave_account_subscription | Get subscription details | | wireweave_account_transactions | View transaction history | | wireweave_pricing | Get pricing information |

Usage Examples

Once configured, you can ask Claude:

Generate a wireframe:

"Create a wireframe for a login page with email and password fields"

Validate UX:

"Check the UX best practices for this wireframe code"

Save to cloud:

"Save this wireframe as 'Dashboard v2' in my project"

Share:

"Create a shareable link for this wireframe"

Architecture

┌─────────────────┐     ┌─────────────────┐     ┌─────────────────┐
│   Claude/LLM    │────▶│   MCP Server    │────▶│   API Server    │
│                 │     │  (this package) │     │                 │
└─────────────────┘     └─────────────────┘     └─────────────────┘
                              │                       │
                         Tool definitions        Execution
                         Request forwarding      Auth & Rate Limit
                                                 Credit management

The MCP server is a thin client that:

  • Defines and exposes 30 tools to AI assistants
  • Forwards tool calls to the Wireweave API Server
  • Returns results back to the AI

All authentication, rate limiting, and business logic runs on the API Server.

Credit Costs

| Feature | Credits | |---------|---------| | Parse, Validate | 1 | | Grammar, Guide, Patterns, Examples, UX Rules | 0 (free) | | Render HTML | 2 | | UX Validation | 3 | | Diff, Analyze | 2 | | Cloud Save/Update | 1 | | Create Share Link | 5 |

Links

License

MIT