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

v0.3.2

Published

MCP server for Strapi CMS platform

Readme

@cmsmcp/strapi

MCP server for Strapi -- 17 tools for managing content types, entries, media, users, roles, localization, and publish workflows.

npm version License: MIT

Quick Start

Claude Desktop

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

{
  "mcpServers": {
    "strapi": {
      "command": "npx",
      "args": ["-y", "@cmsmcp/strapi"],
      "env": {
        "STRAPI_URL": "http://localhost:1337",
        "STRAPI_API_TOKEN": "your-api-token"
      }
    }
  }
}

Claude Code

claude mcp add strapi -e STRAPI_URL=http://localhost:1337 -e STRAPI_API_TOKEN=your-token -- npx -y @cmsmcp/strapi

Cursor / Windsurf / Any MCP Client

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

Configuration

| Variable | Required | Description | |----------|----------|-------------| | STRAPI_URL | Yes | Strapi server URL (e.g., http://localhost:1337) | | STRAPI_API_TOKEN | Yes | Strapi API token (full access recommended) |

Available Tools (17 tools)

Content (9 tools)

| Tool | Description | |------|-------------| | strapi_list_content_types | List all content types with their schemas | | strapi_list_entries | List entries for a content type with pagination | | strapi_get_entry | Get a single entry by ID | | strapi_create_entry | Create a new entry in a content type | | strapi_update_entry | Update an existing entry | | strapi_delete_entry | Delete an entry | | strapi_bulk_delete | Bulk delete multiple entries | | strapi_publish_entry | Publish a draft entry | | strapi_unpublish_entry | Unpublish a published entry |

System & Media (8 tools)

| Tool | Description | |------|-------------| | strapi_list_components | List all reusable components | | strapi_list_media | List uploaded media files | | strapi_upload_media | Upload a media file | | strapi_delete_media | Delete a media file | | strapi_list_users | List admin users | | strapi_list_roles | List user roles | | strapi_get_locales | Get available locales for i18n | | strapi_create_localized_entry | Create a localized version of an entry |

Examples

You: "List all my content types"
AI: Uses strapi_list_content_types to show all registered content types and their field schemas.

You: "Create a new blog post"
AI: Uses strapi_list_content_types to find the blog content type,
    then strapi_create_entry to create the post with the provided data.

You: "Publish my draft article"
AI: Uses strapi_publish_entry to change the entry status from draft to published.

Development

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

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

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

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

License

MIT