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 🙏

© 2025 – Pkg Stats / Ryan Hefner

kudoly-mcp

v1.0.0

Published

MCP Server for KudolyAI - Send daily reports and developer dailies to your team

Readme

Kudoly MCP

MCP Server para registrar reportes diarios de desarrolladores en Kudoly.

Instalación

npm install
npm run build

Configuración

Crear archivo .env con:

KUDOLY_BASE_URL=https://tu-n8n.com/webhook
KUDOLY_API_TOKEN=tu-token-aqui

Uso con Claude Desktop

Agregar a claude_desktop_config.json:

{
  "mcpServers": {
    "kudoly": {
      "command": "node",
      "args": ["C:/ruta/al/proyecto/dist/index.js"],
      "env": {
        "KUDOLY_BASE_URL": "https://tu-n8n.com/webhook",
        "KUDOLY_API_TOKEN": "tu-token"
      }
    }
  }
}

Tool: submit_daily_report

Registra una actividad diaria con verificación de tarea en ClickUp.

Parámetros

| Parámetro | Tipo | Requerido | Descripción | |-----------|------|-----------|-------------| | project_name | string | No | Nombre del proyecto (se intenta obtener de package.json si no se proporciona) | | task_name | string | Sí | Nombre de la tarea en ClickUp | | activities_string | string | Sí | Descripción de las actividades realizadas | | status | enum | No | Estado: complete, progress, blocked, upcoming, qa (default: progress) | | create_task | boolean | No | Si es true, crea la tarea en ClickUp si no existe (default: false) | | clickup_status | string | No | Status de ClickUp para la nueva tarea (requerido si create_task=true) |

Flujo

  1. Verificar tarea: Llama al backend para verificar si la tarea existe en ClickUp
  2. Si no existe: Retorna los statuses disponibles para que el usuario confirme la creación
  3. Guardar reporte: Guarda el reporte (creando la tarea si fue confirmado)

Respuestas

Tarea encontrada y reporte guardado:

{
  "type": "save_report",
  "success": true,
  "daily_id": "uuid",
  "task_name": "Mi tarea",
  "task_created": false,
  "project_name": "mi-proyecto",
  "message": "Reporte guardado para la tarea \"Mi tarea\"."
}

Tarea no encontrada (necesita confirmación):

{
  "type": "check_task",
  "task_found": false,
  "project_id": "uuid",
  "project_name": "mi-proyecto",
  "available_statuses": [
    {"status": "backlog", "color": "#gray"},
    {"status": "in progress", "color": "#blue"}
  ],
  "message": "La tarea \"Nueva tarea\" no existe en ClickUp. ¿Deseas crearla?"
}

Error:

{
  "type": "error",
  "code": "PROJECT_NOT_FOUND",
  "message": "Proyecto \"xyz\" no encontrado.",
  "available_projects": ["proyecto-a", "proyecto-b"]
}

Desarrollo

# Instalar dependencias
npm install

# Compilar
npm run build

# Ejecutar tests
npm test

# Tests con coverage
npm run test:coverage

# Modo desarrollo (watch)
npm run dev

Estructura del Proyecto

src/
├── index.ts                    # Entry point, MCP server setup
├── tools/
│   └── submitDailyReport.ts    # Tool principal
├── services/
│   └── kudolyApi.ts            # Cliente HTTP para n8n
├── utils/
│   └── packageJson.ts          # Utilidad para leer package.json
└── types/
    └── index.ts                # Tipos TypeScript