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

@cmssy/mcp-server

v0.2.14

Published

MCP server for Cmssy CMS — enables AI-driven page creation and management

Downloads

1,821

Readme

@cmssy/mcp-server

MCP server for Cmssy CMS — enables AI-driven page creation and management with i18n support.

Setup

Prerequisites

  1. Your Cmssy backend API URL (e.g. https://api.your-cmssy.com)
  2. An API token (create in Dashboard > API Tokens, starts with cs_)
  3. Your workspace ID

Add to Claude Code

Add to .mcp.json in your project root:

{
  "mcpServers": {
    "cmssy": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@cmssy/mcp-server",
        "--token",
        "cs_YOUR_TOKEN",
        "--workspace-id",
        "YOUR_WORKSPACE_ID",
        "--api-url",
        "https://api.your-cmssy.com"
      ]
    }
  }
}

Environment Variables

Instead of CLI args, you can set:

  • CMSSY_API_TOKEN — API token (cs_xxx)
  • CMSSY_WORKSPACE_ID — Workspace ID
  • CMSSY_API_URL — API URL (required, e.g. https://api.your-cmssy.com)

Available Tools

Read Tools

| Tool | Description | | -------------------- | ------------------------------------------------------ | | list_pages | Page tree with hierarchy | | get_page | Full page with blocks and i18n content (by slug or id) | | list_block_types | All available blocks with schemas and defaults | | get_block_schema | Detailed schema for one block type | | get_site_config | Languages, navigation, site name | | get_workspace_info | Workspace name, plan, limits | | list_media | Media library listing |

Write Tools

| Tool | Description | | ---------------------- | ------------------------------- | | create_page | Create a new page | | update_page_blocks | Set full blocks array on a page | | update_page_settings | Update page metadata and SEO | | publish_page | Publish a page | | unpublish_page | Unpublish a page | | delete_page | Delete a page |

Block Helper Tools

| Tool | Description | | ------------------------ | --------------------------------------------------------------- | | add_block_to_page | Insert a block at position (auto-generates UUID + translations) | | update_block_content | Merge content into an existing block | | remove_block_from_page | Remove a block by ID |

Resources

| URI | Description | | ------------------- | ---------------------------- | | cmssy://sitemap | Full page tree as JSON | | cmssy://blocks | All block types with schemas | | cmssy://workspace | Workspace info + site config |

Example Workflow

> List all pages in my workspace
> Show me the available block types
> Create a new "Features" page with content in English and Polish
> Add a hero block to the Features page
> Publish the Features page

Development

pnpm install
pnpm dev -- --token cs_xxx --workspace-id xxx --api-url http://localhost:4000