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

@atnasetreum/descarga-material-mcp

v1.0.6

Published

Servidor MCP por stdio para consultar metricas de live-dock-api en modo solo lectura.

Readme

live-dock-mcp

Servidor MCP por stdio para consultar metricas de live-dock-api en modo solo lectura.

Estado del proyecto

  • Paquete publicado en npm: @atnasetreum/descarga-material-mcp
  • Runtime MCP: stdio
  • Transport: @modelcontextprotocol/sdk
  • Framework: NestJS

Instalacion desde npm

npm i @atnasetreum/descarga-material-mcp

Variables de entorno requeridas

API_BASE_URL=http://localhost:4000
API_APP_KEY=replace-with-your-live-dock-api-app-key
LIVE_DOCK_USERNAME=replace-with-your-live-dock-username
LIVE_DOCK_PASSWORD=replace-with-your-live-dock-password

Puedes tomar como base live-dock-mcp/.env.example.

Herramientas disponibles

  1. get_delays_by_role
  • Objetivo: resumen de retrasos por rol.
  • Filtros: startDate, endDate, role, eventType.
  1. get_bottleneck_snapshot
  • Objetivo: detectar el cuello de botella actual en procesos EN_PROGRESO.
  • Filtros: startDate, endDate.
  1. get_role_workload_and_performance
  • Objetivo: cruzar carga por rol vs tiempos para detectar saturacion.
  • Filtros: startDate, endDate, role.
  1. get_rejection_funnel
  • Objetivo: identificar en que etapa/rol se concentra el rechazo.
  • Filtros: startDate, endDate, role.
  1. get_user_notification_effectiveness
  • Objetivo: efectividad por usuario de notificaciones mostradas, confirmadas y sin accion.
  • Filtros: startDate, endDate, role, userId.

Resources disponibles

  • roles-catalog
  • event-types-catalog

Preparacion local

pnpm install
pnpm build

Ejecucion manual

node dist/main.js

Configuracion MCP en Claude Desktop

Ejemplo funcional:

{
  "mcpServers": {
    "proceso-de-recepcion": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@atnasetreum/descarga-material-mcp"],
      "env": {
        "API_BASE_URL": "http://localhost:4000",
        "API_APP_KEY": "replace-with-your-live-dock-api-app-key",
        "LIVE_DOCK_USERNAME": "replace-with-your-live-dock-username",
        "LIVE_DOCK_PASSWORD": "replace-with-your-live-dock-password"
      }
    }
  }
}

Configuracion MCP en VS Code

El workspace incluye configuracion en /.vscode/mcp.json.

Ejemplo:

{
  "servers": {
    "proceso-de-recepcion": {
      "type": "stdio",
      "command": "node",
      "args": ["${workspaceFolder}/live-dock-mcp/dist/main.js"],
      "envFile": "${workspaceFolder}/live-dock-mcp/.env"
    }
  }
}

Ejemplos de prompts

Usa proceso-de-recepcion.get_bottleneck_snapshot y dime cual es el cuello de botella actual.

Usa proceso-de-recepcion.get_rejection_funnel de los ultimos 30 dias y dime en que etapa se concentran los rechazos.

Usa proceso-de-recepcion.get_user_notification_effectiveness y dime que usuarios tienen menor tasa de confirmacion de notificaciones.

Publicacion

npm pack --dry-run
npm publish --access public

Este paquete usa publishConfig en package.json para publicar al registry oficial de npm.

Notas operativas

  • Este servidor esta pensado para stdio y se recomienda ejecutar node dist/main.js.
  • Evitar pnpm start reduce ruido en stdout y mejora estabilidad del protocolo MCP.
  • Si cambias codigo o definiciones de tools, recompila con pnpm build antes de reiniciar el servidor MCP.
  • Nunca subas credenciales reales al README o a configuraciones versionadas.