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

@wire-ui/mcp

v0.4.0

Published

MCP server for Wire UI — AI-native unstyled primitives framework

Readme

@wire-ui/mcp

MCP (Model Context Protocol) server for Wire UI — AI-native unstyled primitives framework.

Gives AI coding tools direct access to Wire UI's components, hooks/primitives/composables, props, data attributes, and usage examples across React, Solid, and Vue.

Installation

npx @wire-ui/mcp

IDE Configuration

Manual configuration for each IDE.

| IDE | Config File (Linux) | Config File (macOS) | | --------------- | -------------------------------------- | --------------------------------------------------------------------------- | | Claude Code | ~/.claude.json or .mcp.json | ~/.claude.json or .mcp.json | | Claude Desktop | N/A | ~/Library/Application Support/Claude/claude_desktop_config.json | | VS Code | ~/.config/Code/User/mcp.json | ~/Library/Application Support/Code/User/mcp.json | | Cursor | ~/.config/Cursor/User/mcp.json | ~/Library/Application Support/Cursor/User/mcp.json | | Windsurf | ~/.config/Windsurf/User/mcp.json | ~/Library/Application Support/Windsurf/User/mcp.json | | Trae | ~/.config/Trae/User/mcp.json | ~/Library/Application Support/Trae/User/mcp.json |

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "wire-ui": {
      "command": "npx",
      "args": ["@wire-ui/mcp"]
    }
  }
}

Cursor

Add to your .cursor/mcp.json:

{
  "mcpServers": {
    "wire-ui": {
      "command": "npx",
      "args": ["@wire-ui/mcp"]
    }
  }
}

VS Code / Windsurf / Trae

Add to your mcp.json:

{
  "mcpServers": {
    "wire-ui": {
      "command": "npx",
      "args": ["@wire-ui/mcp"]
    }
  }
}

Available Tools

Every tool accepts a framework parameter — "react", "solid", or "vue" (default: "react"). The server returns import statements, code snippets, and naming that match the chosen framework (e.g. React/Vue surface hooks as useX, Solid as createX).

list_components

List all Wire UI components for a framework with categories and descriptions.

| Parameter | Type | Default | Description | | ----------- | --------------------------------------------------------------------------------- | --------- | ------------------ | | framework | "react" \| "vue" \| "solid" | "react" | Target framework | | category | "form" \| "overlay" \| "display" \| "layout" \| "navigation" \| "feedback" | — | Filter by category |

get_component

Get full details for a specific component — props, data attributes, parts, and usage examples.

| Parameter | Type | Default | Description | | ----------- | ----------------------------- | --------- | ---------------------------------------- | | name | string | required | Component name (e.g., "Button", "Modal") | | framework | "react" \| "vue" \| "solid" | "react" | Target framework |

list_hooks

List all hooks (React/Vue) or primitives (Solid) — also called composables in Vue.

| Parameter | Type | Default | Description | | ----------- | ------------------------------------------------------------------------------------------ | --------- | ----------------- | | framework | "react" \| "vue" \| "solid" | "react" | Target framework | | category | "state" \| "interaction" \| "observer" \| "positioning" \| "timing" \| "dom" | — | Filter by category |

get_hook

Get details for a specific hook/primitive/composable — signature, return value, and example. Accepts any naming form (useDisclosure, createDisclosure, or canonical disclosure).

| Parameter | Type | Default | Description | | ----------- | ----------------------------- | --------- | ----------------- | | name | string | required | Hook name | | framework | "react" \| "vue" \| "solid" | "react" | Target framework |

get_decision_tree

Get a decision tree to help choose the right component for a scenario.

| Parameter | Type | Description | | ---------- | ------------------------------------------------------------------------------------------ | ------------------- | | scenario | "form" \| "overlay" \| "navigation" \| "feedback" \| "hooks" \| "styling" | Which decision tree |

search_docs

Search across components, hooks, and decision trees by keyword.

| Parameter | Type | Default | Description | | ----------- | ----------------------------- | --------- | ---------------------- | | query | string | required | Free-text search query | | framework | "react" \| "vue" \| "solid" | "react" | Target framework |

get_installation_guide

Get installation instructions, peer dependencies, styling approach, and data attribute reference for the chosen framework.

| Parameter | Type | Default | Description | | ----------- | ----------------------------- | --------- | ---------------- | | framework | "react" \| "vue" \| "solid" | "react" | Target framework |

get_exports_list

List all exports from a Wire UI package — components, hooks/primitives/composables, and TypeScript types.

| Parameter | Type | Default | Description | | ----------- | ----------------------------- | --------- | ---------------- | | framework | "react" \| "vue" \| "solid" | "react" | Target framework |

Framework Support

| Framework | Package | Hooks surface as | | --------- | ----------------- | ---------------- | | React | @wire-ui/react | useX | | Solid | @wire-ui/solid | createX | | Vue | @wire-ui/vue | useX (composables) |

A small number of components are only available in @wire-ui/react (currently Popover, Slider, Tabs) and the MCP server reports this when you query them with another framework.

License

MIT