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

@cmsmcp/wix

v0.3.2

Published

MCP server for Wix — 18 tools for data collections, eCommerce, contacts, blog, bookings, and site management

Downloads

179

Readme

@cmsmcp/wix

MCP server for Wix -- 21 tools for data collections, e-commerce, contacts, blog, bookings, and site management via the Wix REST API.

npm version License: MIT

Quick Start

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "wix": {
      "command": "npx",
      "args": ["-y", "@cmsmcp/wix"],
      "env": {
        "WIX_API_KEY": "your-api-key",
        "WIX_SITE_ID": "your-site-id"
      }
    }
  }
}

Claude Code

claude mcp add wix -e WIX_API_KEY=your-key -e WIX_SITE_ID=your-site-id -- npx -y @cmsmcp/wix

Cursor / Windsurf / Any MCP Client

Same JSON config format -- add to your client's MCP settings file.

Configuration

| Variable | Required | Description | |----------|----------|-------------| | WIX_API_KEY | Yes | Wix API key | | WIX_SITE_ID | Yes | Wix site ID |

Available Tools (21 tools)

Data Collections (8 tools)

| Tool | Description | |------|-------------| | wix_list_data_collections | List all data collections | | wix_get_data_collection | Get a data collection schema | | wix_query_data_items | Query data items with filters | | wix_get_data_item | Get a single data item by ID | | wix_insert_data_item | Insert a new data item | | wix_update_data_item | Update an existing data item | | wix_remove_data_item | Remove a data item | | wix_bulk_insert_data_items | Bulk insert multiple data items |

Contacts (5 tools)

| Tool | Description | |------|-------------| | wix_list_contacts | List all contacts | | wix_get_contact | Get a single contact | | wix_create_contact | Create a new contact | | wix_update_contact | Update a contact | | wix_delete_contact | Delete a contact |

E-Commerce (4 tools)

| Tool | Description | |------|-------------| | wix_list_products | List store products | | wix_get_product | Get a single product | | wix_list_orders | List store orders | | wix_get_order | Get a single order |

Blog (2 tools)

| Tool | Description | |------|-------------| | wix_list_blog_posts | List blog posts | | wix_create_blog_post | Create a new blog post |

Bookings & Site (2 tools)

| Tool | Description | |------|-------------| | wix_list_booking_services | List booking services | | wix_get_site_properties | Get site properties and settings |

Examples

You: "List all my data collections"
AI: Uses wix_list_data_collections to show all collections with their schemas and field definitions.

You: "Add a new item to my Products collection"
AI: Uses wix_get_data_collection to check the schema,
    then wix_insert_data_item to add the new item with the required fields.

You: "Show me all contacts from the last month"
AI: Uses wix_list_contacts with date filtering to retrieve recent contacts.

You: "Create a new blog post"
AI: Uses wix_create_blog_post with the provided title, content, and metadata.

Development

# Build
npx turbo build --filter=@cmsmcp/wix

# Test
npx turbo test --filter=@cmsmcp/wix

# Dev mode
npx turbo dev --filter=@cmsmcp/wix

# Test with MCP Inspector
npx @modelcontextprotocol/inspector node packages/wix-mcp/dist/index.js

License

MIT