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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@wix/mcp

v1.0.22

Published

A Model Context Protocol server for Wix AI tools

Readme

Wix MCP

Installation & Usage

From npm Package

npx @wix/mcp

Local Development

  1. Clone the repository
  2. Install dependencies
  3. Build the project

Run locally with:

npx /Users/absolute/path/to/repo/dir/.

Or directly with Node:

node /Users/absolute/path/to/build/bin-standalone.js

Configuration Options

Tool Selection

Enable specific standard tools (all enabled by default):

--tools=WDS,REST,SDK,WIX_HEADLESS,BUILD_APPS,VELO,BUSINESS_SOLUTIONS

Experimental Tools

Enable experimental tools (disabled by default):

--experimental=WIX_API,CLI_COMMAND,GET_TO_KNOW_WIX,VELO_README,WIX_API_THROUGH_FS

CLI Mode

Specify CLI mode:

--cli=wix-one

Logger

Set logging output:

  • --logger=mcp (default, logs to MCP server)
  • --logger=file (logs to ~/wix-mcp-log.txt)

Tool Reference

Standard Tools:

  • WDS: Wix Design System Documentation (SearchWixWDSDocumentation)
  • REST: Wix REST API Documentation (SearchWixRESTDocumentation)
  • SDK: Wix SDK Documentation (SearchWixSDKDocumentation)
  • BUILD_APPS: Build Apps Documentation (SearchBuildAppsDocumentation)
  • WIX_HEADLESS: Wix Headless Documentation (SearchWixHeadlessDocumentation)
  • VELO: Velo Documentation (SearchWixVeloDocumentation)
  • BUSINESS_SOLUTIONS: Business solutions recipes (WixBusinessFlowsDocumentation)

Experimental Tools:

  • WIX_API: Wix API tools (CallWixSiteAPI) using provided --wixAuthorization token
  • CLI_COMMAND: CLI commands for Wix apps (RunWixCliCommand)
  • GET_TO_KNOW_WIX: Enables WixREADME and adjusts docs tools to depend on it
  • VELO_README: Provides Velo-specific project context (VeloREADME)
  • WIX_API_THROUGH_FS: Adds CallWixSiteAPI authenticated via local Wix CLI files

Experimental tools are in early development and may have limited functionality or breaking changes. They must be explicitly enabled with --experimental.

Resources

The resource feature provides access to Wix documentation via the MCP server:

  • Fetches documentation indexes from specified Wix portals
  • Makes documentation articles available as resources
  • Allows fetching article content using the MCP protocol

Resources use the wix-docs:// URI scheme, which maps to Wix Docs URLs:

  • Docs URL: https://dev.wix.com/docs/...
  • Resource URI: wix-docs://...

To load all docs from a portal:

--portals=<docs-portal-name>

Cursor Integration

MCP Docs

See: https://docs.cursor.com/context/model-context-protocol

Configuration (~/.cursor/mcp.json)

Using npm package

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

Using local build

{
  "mcpServers": {
    "wix-local-mcp": {
      "command": "npx",
      "args": ["/Users/absolute/path/to/repo/dir/."]
    }
  }
}

Using Node

{
  "mcpServers": {
    "wix-local-mcp": {
      "command": "node",
      "args": ["/Users/absolute/path/to/build/bin-standalone.js"]
    }
  }
}

Troubleshooting

  • Check logs from Claude Desktop or Cursor
  • For Node/fnm/nvm errors: ensure the latest Node version is set as default
  • For npx errors: use -y and the correct npm registry
  • Try specifying the full path to Node
  • Try using Bun and index.ts directly
  • Ensure build files have appropriate permissions

NVM Example Fix

"wix-mcp-remote-prod": {
  "command": "npx",
  "args": ["-y", "@wix/mcp-remote", "https://mcp.wix.com/sse"],
  "env": {
    "PATH": "<path-to-your-nvm-node-version>/bin"
  }
}

FNM Example Fix

{
  "mcpServers": {
    "wix-mcp-remote-prod": {
      "command": "sh",
      "args": [
        "-c",
        "eval $(fnm env) && npx -y @wix/mcp-remote https://mcp.wix.com/sse"
      ]
    }
  }
}

Node 20 is required to build.