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

@skemacms/mcp-server

v1.2.3

Published

Serveur MCP officiel pour Skema CMS - Connectez Claude Desktop a vos donnees

Readme

Skema MCP Server

npm version License: MIT

Serveur MCP (Model Context Protocol) officiel pour Skema CMS.
Connectez Claude Desktop, Cursor, Windsurf ou tout client MCP compatible à vos données Skema.

Installation

npm install -g @skemacms/mcp-server

Configuration

Claude Desktop

Ajoutez dans votre fichier claude_desktop_config.json :

{
  "mcpServers": {
    "skema-cms": {
      "command": "skema-mcp",
      "env": {
        "SKEMA_API_KEY": "pk_live_votre_cle_api",
      }
    }
  }
}

Windsurf / Cursor

Ajoutez dans vos paramètres MCP :

{
  "skema-cms": {
    "command": "npx",
    "args": ["-y", "@skemacms/mcp-server"],
    "env": {
      "SKEMA_API_KEY": "pk_live_votre_cle_api",
    }
  }
}

Variables d'environnement

| Variable | Description | Requis | | ---------------- | ------------------------------------------------------- | ------ | | SKEMA_API_KEY | Clé API Skema (format pk_live_xxx) | Oui |

Outils disponibles (11 outils)

Lecture

| Outil | Description | | ------------------------- | -------------------------------------------------------------- | | get_collections | Liste toutes les collections accessibles | | get_collection | Récupère le schéma d'une collection (champs, types, relations) | | get_collection_items | Liste les items avec pagination, tri, filtres et populate | | get_collection_item | Récupère un item par son ID avec ses relations | | search_collection_items | Recherche textuelle dans une collection | | count_collection_items | Compte les items avec filtres optionnels |

Écriture

| Outil | Description | | ------------------------ | ----------------------------------------------- | | create_collection_item | Crée un nouvel item | | update_collection_item | Met à jour un item existant (merge partiel) | | delete_collection_item | Supprime un item | | batch_create_items | Crée plusieurs items en une seule requête | | batch_update_items | Met à jour plusieurs items en une seule requête |

Exemples d'utilisation

Lister les collections

Quelles collections sont disponibles dans mon CMS ?

Récupérer des items avec relations

Liste les 10 derniers articles avec leurs auteurs et catégories

Créer un item

Crée un nouvel article avec le titre "Mon article" et le statut "draft"

Recherche

Recherche les produits contenant "smartphone" dans le titre

Opérations en masse

Mets à jour le statut de tous les articles de la catégorie "news" en "published"

API HTTP (alternative)

Vous pouvez aussi utiliser l'API MCP directement via HTTP :

Endpoint : POST https://api.skemacms.com/mcp

Headers :

  • Authorization: Bearer <API_KEY>
  • Content-Type: application/json

Exemple cURL

curl -X POST https://api.skemacms.com/mcp \
  -H "Authorization: Bearer pk_live_xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "get_collection_items",
      "arguments": {
        "collection": "articles",
        "page": 1,
        "perPage": 10,
        "populate": "author,category"
      }
    }
  }'

Exemple Python

import requests

API_KEY = "pk_live_xxx"
MCP_URL = "https://api.skemacms.com/mcp"

headers = {
    "Authorization": f"Bearer {API_KEY}",
    "Content-Type": "application/json"
}

response = requests.post(MCP_URL, headers=headers, json={
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
        "name": "get_collection_items",
        "arguments": {"collection": "articles", "populate": "author"}
    }
})
print(response.json())

Méthodes JSON-RPC

| Méthode | Description | | ------------ | ----------------------------------- | | initialize | Initialise la connexion MCP | | tools/list | Liste tous les outils disponibles | | tools/call | Exécute un outil avec ses arguments |

Permissions

Les outils disponibles dépendent des permissions de votre clé API :

| Permission | Outils autorisés | | ---------- | ------------------------------ | | read | get_*, search_*, count_* | | create | create_*, batch_create_* | | update | update_*, batch_update_* | | delete | delete_* |

Développement local

git clone https://github.com/skemacms/mcp-server.git
cd mcp-server
npm install
npm run dev

Liens utiles

Licence

MIT - Skema CMS