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

@recaudo/mcp-server

v1.3.0

Published

MCP Server for Recaudo - manage payments, invoices, customers, conversations, CRM and more via AI assistants

Readme

@recaudo/mcp-server

Servidor MCP (Model Context Protocol) para Recaudo — plataforma de pagos, facturación, CRM y automatización.

Permite a asistentes de IA como Claude Desktop, Cursor y otros clientes MCP gestionar tu negocio directamente: crear facturas, cobrar, enviar WhatsApp, gestionar clientes, CRM y más.

110 herramientas disponibles

| Módulo | Herramientas | |--------|-------------| | Clientes | Crear, buscar, actualizar, eliminar, métodos de pago | | Facturas | CRUD completo, parcialidades, moratorios | | Pagos | Cargos, reembolsos, links de pago | | Conversaciones | WhatsApp, Instagram, Messenger, templates | | Cobranza | Facturas vencidas, promesas de pago, intentos | | CRM | Deals, pipelines, mover etapas | | Seguimientos | Crear, completar, reprogramar | | Automatizaciones | Crear reglas trigger→acción | | Email | Templates, envíos, historial | | Calendario | Citas, disponibilidad, tipos | | Facturación electrónica | CFDI, timbrar, cancelar | | Etiquetas | Tags de clientes y conversaciones | | Reportes | Generar reportes con lenguaje natural | | Productos | Catálogo, categorías, inventario | | Pedidos | CRUD, estados, envío | | Suscripciones | Planes, cobro recurrente | | Webhooks | Configurar, probar, historial |

Configuración rápida

1. Obtén tu API Key

Ve a Recaudo → Configuración → API Keys y genera una Secret Key.

2. Configura tu cliente MCP

Claude Desktop

Edita ~/Library/Application Support/Claude/claude_desktop_config.json (Mac) o %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "recaudo": {
      "command": "npx",
      "args": ["-y", "@recaudo/mcp-server"],
      "env": {
        "RECAUDO_API_KEY": "sk_live_tu_api_key"
      }
    }
  }
}

Claude Code

claude mcp add recaudo -- npx -y @recaudo/mcp-server

Luego configura la variable de entorno RECAUDO_API_KEY.

Cursor

Crea .cursor/mcp.json en tu proyecto:

{
  "mcpServers": {
    "recaudo": {
      "command": "npx",
      "args": ["-y", "@recaudo/mcp-server"],
      "env": {
        "RECAUDO_API_KEY": "sk_live_tu_api_key"
      }
    }
  }
}

3. Reinicia tu cliente y listo

Ahora puedes pedirle a tu asistente de IA cosas como:

  • "Muéstrame los últimos 5 pagos"
  • "Crea una factura de $5,000 para el cliente Juan Pérez"
  • "¿Cuántas facturas vencidas hay?"
  • "Envía un WhatsApp al cliente con el template de recordatorio"
  • "Crea un seguimiento para llamar a Pedro mañana"
  • "Genera un reporte de ingresos del mes"

Variables de entorno

| Variable | Requerida | Descripción | |----------|-----------|-------------| | RECAUDO_API_KEY | Sí | Tu Secret Key de la API | | RECAUDO_API_URL | No | URL base (default: https://recaudo.app/api/v1) |

Documentación

Licencia

MIT