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

@smaltera/mcp-server

v0.1.0

Published

MCP server for Smaltera tile shop catalog

Readme

Smaltera MCP Server

Connectez Claude Desktop (ou tout client MCP) au catalogue de votre magasin Smaltera. Accès lecture seule : recherche de produits, fiches détaillées, collections, devis estimatifs et informations du magasin.

Prérequis

  • Node.js 20 ou plus
  • Un client MCP (Claude Desktop, par ex.)
  • Un token MCP, obtenu dans votre admin Smaltera → Paramètres → Connexion IA

Installation (Claude Desktop)

Ajoutez ce bloc à votre configuration Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json sur macOS) :

{
  "mcpServers": {
    "smaltera": {
      "command": "npx",
      "args": ["-y", "@smaltera/mcp-server"],
      "env": {
        "SMALTERA_TOKEN": "smal_mcp_votre-token-ici"
      }
    }
  }
}

Redémarrez Claude Desktop. Le catalogue Smaltera est désormais accessible.

Variables d'environnement

| Variable | Requis | Défaut | Rôle | |---|---|---|---| | SMALTERA_TOKEN | oui | — | Token d'accès créé dans l'admin Smaltera | | SMALTERA_API_URL | non | https://app.smaltera.com | Origine de l'instance Smaltera |

Outils disponibles

  • search_products — Recherche par matériau, format, prix, antidérapance, stock, marque…
  • get_product_details — Fiche complète à partir d'une référence interne
  • list_collections — Parcourir les collections (familles de produits)
  • get_collection — Détail d'une collection et de ses produits (par slug)
  • list_suppliers — Fournisseurs, marques distribuées et nombre de produits
  • estimate_quote — Calcul des boîtes, palettes et prix HT pour une surface donnée
  • get_shop_info — Coordonnées du magasin

Exemples de questions

« Trouve-moi des carreaux effet marbre 60x60 sous 80€/m² en stock. » « Combien de boîtes pour 18 m² de Carrara Bianco ? » « Quelles sont les coordonnées du magasin ? »

Développement

pnpm install
pnpm build        # bundle dans dist/ via tsup
pnpm typecheck

Lancer en local contre une instance de dev :

SMALTERA_API_URL=http://localhost:3000 \
SMALTERA_TOKEN=smal_mcp_... \
node dist/index.js

Licence

MIT