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/webflow

v0.3.2

Published

MCP server for Webflow CMS platform — 20 tools for sites, collections, items, pages, products, orders, and publishing

Readme

@cmsmcp/webflow

MCP server for Webflow -- 21 tools for managing sites, CMS collections, items, pages, e-commerce products, orders, publishing, and webhooks.

npm version License: MIT

Quick Start

Claude Desktop

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

{
  "mcpServers": {
    "webflow": {
      "command": "npx",
      "args": ["-y", "@cmsmcp/webflow"],
      "env": {
        "WEBFLOW_API_TOKEN": "your-api-token"
      }
    }
  }
}

Claude Code

claude mcp add webflow -e WEBFLOW_API_TOKEN=your-token -- npx -y @cmsmcp/webflow

Cursor / Windsurf / Any MCP Client

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

Configuration

| Variable | Required | Description | |----------|----------|-------------| | WEBFLOW_API_TOKEN | Yes | Webflow API v2 bearer token |

Available Tools (21 tools)

Sites & Collections (7 tools)

| Tool | Description | |------|-------------| | webflow_list_sites | List all authorized Webflow sites | | webflow_get_site | Get details for a specific site | | webflow_list_collections | List CMS collections for a site | | webflow_get_collection | Get a collection's schema and fields | | webflow_list_collection_fields | List all fields in a collection |

CMS Items (5 tools)

| Tool | Description | |------|-------------| | webflow_list_items | List items in a CMS collection with pagination | | webflow_get_item | Get a single CMS item by ID | | webflow_create_item | Create a new CMS item | | webflow_update_item | Update an existing CMS item | | webflow_delete_item | Delete a CMS item |

Pages (3 tools)

| Tool | Description | |------|-------------| | webflow_list_pages | List all pages for a site | | webflow_get_page | Get details for a specific page | | webflow_update_page | Update page metadata and SEO settings |

E-Commerce (4 tools)

| Tool | Description | |------|-------------| | webflow_list_products | List all e-commerce products | | webflow_create_product | Create a new product | | webflow_list_orders | List all orders | | webflow_get_order | Get details for a specific order |

Publishing & System (3 tools)

| Tool | Description | |------|-------------| | webflow_publish_items | Publish staged CMS items | | webflow_publish_site | Publish the site to a domain | | webflow_list_domains | List domains for a site | | webflow_list_webhooks | List configured webhooks |

Examples

You: "List all my Webflow sites"
AI: Uses webflow_list_sites to show all authorized sites with their names and domains.

You: "Add a new blog post to my CMS"
AI: Uses webflow_list_collections to find the blog collection,
    then webflow_create_item to create the new post with title, content, and slug.

You: "Publish my site"
AI: Uses webflow_publish_site to deploy the latest changes to your domain.

Development

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

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

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

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

License

MIT