🚀. Socket Launch Week Day 3:Socket Firewall Now Blocks Malicious VS Code and Open VSX Extensions.Learn more
Sign In

@wiretext/mcp

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wiretext/mcp

An [MCP](https://modelcontextprotocol.io) server that lets AI assistants generate wireframes programmatically. Returns editable Wiretext URLs or renders ASCII art directly.

npmnpm
Version
0.3.2
Version published
Weekly downloads
2.2K
-0.27%
Maintainers
1
Weekly downloads
 
Created
Source

Wiretext MCP Server

An MCP server that lets AI assistants generate wireframes programmatically. Returns editable Wiretext URLs or renders ASCII art directly.

Install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

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

Claude Code

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

Cursor

Add to .cursor/mcp.json:

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

Codex

Add to ~/.codex/config.toml:

[mcp_servers.wiretext]
command = "npx"
args = ["-y", "@wiretext/mcp"]

Tools

create_wireframe

Generate an editable Wiretext URL from wire objects.

"Create a wireframe with a navbar, a sidebar with navigation links, and a main content area with a card grid"

Returns a URL like https://wiretext.app/#... that opens in the editor.

render_wireframe

Render wire objects as ASCII art. Useful for previewing layouts inline.

Object Types

Primitives: box, text, line, arrow

Components:

TypeDescriptionKey Props
buttonClickable buttonlabel, icon, align
inputText input fieldlabel, icon
selectDropdown selectlabel
checkboxCheckbox with labellabel, checked
radioRadio button with labellabel, checked
toggleOn/off switchlabel, checked
tableData tablecolumns, rows, filterable
modalModal dialoglabel
browserBrowser windowlabel (URL)
cardContent cardlabel (title)
navbarNavigation barnavItems
tabsTab bartabs
progressProgress barprogress (0-100)
iconSingle icon charactericon
imageImage placeholderlabel, icon
alertAlert bannerlabel, alertType
avatarUser avatarlabel (initials), icon
dividerHorizontal rulelabel
breadcrumbBreadcrumb navitems, separator
listBulleted/numbered listitems, listStyle
stepperStep indicatoritems, activeStep
ratingDot ratingvalue, maxValue
skeletonLoading placeholderwidth, height

Example

[
  {
    "type": "component",
    "componentType": "navbar",
    "position": { "col": 0, "row": 0 },
    "width": 50,
    "navItems": ["Home", "Products", "About"]
  },
  {
    "type": "component",
    "componentType": "breadcrumb",
    "position": { "col": 2, "row": 4 },
    "items": ["Home", "Products", "Laptops"]
  },
  {
    "type": "component",
    "componentType": "card",
    "position": { "col": 2, "row": 6 },
    "width": 22,
    "height": 10,
    "label": "MacBook Pro"
  },
  {
    "type": "component",
    "componentType": "rating",
    "position": { "col": 4, "row": 13 },
    "value": 4,
    "maxValue": 5
  }
]

FAQs

Package last updated on 23 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts