Sign In

@wpconvert/mcp

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wpconvert/mcp

Model Context Protocol server for WPConvert.ai — lets an AI agent convert the current workspace folder into a WordPress theme.

Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
189
575%
Maintainers
1
Weekly downloads
 
Created
Source

@wpconvert/mcp

A Model Context Protocol server for WPConvert.ai. It lets an AI agent (Cursor, Claude Desktop, etc.) convert the current workspace folder into a WordPress theme — no manual zipping required.

It's a thin wrapper over the same HTTP API and smart-zip logic as the wpconvert CLI.

Requires Node.js >= 18 and a WPConvert API key (Pro/Agency or PAYG credits).

Tools

ToolPurpose
wpconvert_convert_folderZip a folder (excluding node_modules, build output, secrets) and start a conversion. Returns a jobId.
wpconvert_check_statusPoll a job's status (queued / processing / done / failed).
wpconvert_download_resultDownload a completed conversion to disk.
wpconvert_explain_failureReturn the failure reason for a failed job.
wpconvert_quotaShow remaining conversions / credits.

Configure (Cursor / Claude Desktop)

{
  "mcpServers": {
    "wpconvert": {
      "command": "npx",
      "args": ["-y", "@wpconvert/mcp"],
      "env": {
        "WPCONVERT_API_KEY": "wpc_live_xxx"
      }
    }
  }
}

Optional: set WPCONVERT_API_BASE to point at a non-default API host (testing).

Typical agent flow

  • wpconvert_convert_folder { "path": "./my-site", "type": "theme" }jobId
  • wpconvert_check_status { "jobId": "..." } (repeat until done; conversions take a few minutes)
  • wpconvert_download_result { "jobId": "..." } → saved theme .zip

Billing, quotas, and refunds are identical to the dashboard and CLI. Secrets are excluded from the zip by default (set includeEnv: true only if you truly need them).

Keywords

mcp

FAQs

Package last updated on 30 Jun 2026

Related posts