🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.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 - npm Package Compare versions

Comparing version
0.1.0
to
0.1.1
+5
-11
package.json
{
"name": "@wiretext/mcp",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",

@@ -11,7 +11,2 @@ "bin": {

],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "pnpm build"
},
"dependencies": {

@@ -27,7 +22,6 @@ "@modelcontextprotocol/sdk": "^1.0.0",

},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
"scripts": {
"build": "tsup",
"dev": "tsup --watch"
}
}
}

@@ -16,3 +16,3 @@ # Wiretext MCP Server

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

@@ -26,3 +26,3 @@ }

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

@@ -39,3 +39,3 @@

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

@@ -46,2 +46,12 @@ }

### Codex
Add to `~/.codex/config.toml`:
```toml
[mcp_servers.wiretext]
command = "npx"
args = ["-y", "@wiretext/mcp"]
```
## Tools

@@ -71,3 +81,3 @@

|------|-------------|-----------|
| `button` | Clickable button | `label` |
| `button` | Clickable button | `label`, `icon`, `align` |
| `input` | Text input field | `label`, `icon` |

@@ -78,3 +88,3 @@ | `select` | Dropdown select | `label` |

| `toggle` | On/off switch | `label`, `checked` |
| `table` | Data table | `columns` |
| `table` | Data table | `columns`, `rows`, `filterable` |
| `modal` | Modal dialog | `label` |

@@ -89,3 +99,3 @@ | `browser` | Browser window | `label` (URL) |

| `alert` | Alert banner | `label`, `alertType` |
| `avatar` | User avatar | `label` (initials) |
| `avatar` | User avatar | `label` (initials), `icon` |
| `divider` | Horizontal rule | `label` |

@@ -95,3 +105,3 @@ | `breadcrumb` | Breadcrumb nav | `items`, `separator` |

| `stepper` | Step indicator | `items`, `activeStep` |
| `rating` | Star rating | `value`, `maxValue` |
| `rating` | Dot rating | `value`, `maxValue` |
| `skeleton` | Loading placeholder | width, height |

@@ -98,0 +108,0 @@

Sorry, the diff of this file is too big to display