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

@imenam/coda-mcp

v1.0.45

Published

MCP server dedicated to managing tickets in a Coda.io table

Readme

Coda Ticket Manager MCP 🎫

Serveur Model Context Protocol (MCP) spécialisé pour la gestion de tickets dans une table Coda.io. Il permet aux agents IA (comme Cursor) d'interagir avec votre système de tickets sans avoir à manipuler les identifiants techniques des colonnes.

🛠️ Stack technique : TypeScript, React, Node.js, Express

✨ Fonctionnalités ciblées

  • Abstraction des données : L'agent IA utilise des noms de champs clairs (objet, statut, priorite, details) au lieu des IDs de colonnes Coda.
  • Gestion des Tickets :
    • create_ticket : Création rapide d'un ticket avec priorités et statuts prédéfinis.
    • list_tickets : Lecture des tickets récents avec mapping automatique des colonnes.
    • update_ticket : Mise à jour ciblée (statut, priorité, objet, détails).
    • search_tickets : Recherche textuelle globale sur toutes les colonnes des tickets récents.
  • Enums métier : Support natif des statuts (A traiter, En cours, Traité) et priorités (NOW !, Urgent, Normal, Si possible).

🚀 Installation & Configuration

1. Configuration .env

Créez un fichier .env à la racine du projet :

CODA_API_TOKEN=votre_jeton_coda
CODA_DOC_ID=id_du_document_coda
CODA_TABLE_ID=id_de_la_table_tickets
CODA_PERMISSIONS=READ_AND_CREATE # Options: READ_ONLY, READ_AND_CREATE, ALL_CRUD

🔐 Permissions

Le serveur respecte les permissions définies dans le fichier .env via CODA_PERMISSIONS :

  • READ_ONLY (Par défaut) : Autorise uniquement list_tickets et search_tickets.
  • READ_AND_CREATE : Autorise la lecture, la recherche et la création (create_ticket), mais interdit les modifications.
  • ALL_CRUD : Autorise toutes les opérations, y compris la mise à jour (update_ticket).

2. Utilisation avec Cursor

Ajoutez le serveur MCP dans les paramètres de Cursor :

Via chemin local :

"coda-ticket-manager": {
  "command": "node",
  "args": ["C:/chemin/vers/projet/src/mcp-server.js"]
}

Via npx (après publication) :

"coda-ticket-manager": {
  "command": "npx",
  "args": ["-y", "coda-ticket-manager-mcp"]
}

🛠️ Outils de développement

  • npm start : Lance le serveur MCP.
  • npm run inspect : Lance l'Inspecteur MCP pour tester les outils visuellement dans votre navigateur.

📝 Structure de la table attendue

Le serveur est configuré pour une table avec les colonnes suivantes :

  • Objet : Titre du ticket.
  • Détails : Description longue.
  • Statut : Liste de choix (A traiter, En cours, Traité).
  • Priorité : Liste de choix (NOW !, Urgent, Normal, Si possible).
  • Date demande : Date de création.
  • Type : Type de ticket.

📄 Licence

ISC