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

hooka-mcp

v0.1.2

Published

MCP server for Hooka — control TikTok cold-DM outreach (connect accounts, run campaigns, manage the unified inbox) from your LLM via the Hooka v1 API.

Readme

Hooka MCP server

Servidor MCP para Hooka — controla el outreach por DM en TikTok desde tu LLM (Claude Desktop, Cursor, VS Code, ChatGPT). Es un wrapper fino sobre la API pública v1 de Hooka: cada tool se traduce a una llamada a api.hooka.to/v1 con tu API key. No reimplementa lógica ni almacena credenciales.

1. Consigue una API key

Crea/copia una API key en el panel de developers del dashboard de Hooka, o vía POST /v1/api_keys. Empieza por hk_live_… (producción) o hk_test_….

2. Conéctalo a tu cliente

Publicado en npm como hooka-mcp — no hay que clonar ni compilar nada: npx lo descarga y arranca solo.

Claude Desktopclaude_desktop_config.json:

{
  "mcpServers": {
    "hooka": {
      "command": "npx",
      "args": ["-y", "hooka-mcp"],
      "env": { "HOOKA_API_KEY": "hk_live_xxxxx" }
    }
  }
}

Cursor — Settings → MCP → Add, mismo command/args/env. (HOOKA_API_BASE opcional, por defecto https://api.hooka.to.)

Desde el código (desarrollo)

cd apps/mcp && npm install && npm run build
# luego command: "node", args: ["<ruta>/apps/mcp/dist/stdio.js"]

Tools

  • Senders: list_senders, get_sender, create_sender (devuelve QR a escanear), refresh_sender_connection, delete_sender.
  • Campañas: list_campaigns, get_campaign, create_campaign, add_targets, list_targets, start_campaign, pause_campaign, resume_campaign.
  • Inbox: list_conversations, get_messages, send_reply.
  • Supresión: list_suppressions, add_suppressions, remove_suppression.
  • Otros: list_events, list_webhook_endpoints, create_webhook_endpoint, get_workspace (whoami).

Prompts: launch_campaign, triage_inbox, connect_account. Resources: hooka://event-types, hooka://api-reference.

⚠️ Seguridad

start_campaign, resume_campaign y send_reply envían DMs reales a personas en TikTok y consumen cupo de plan (acciones irreversibles). Están marcadas como destructiveHint para que el cliente pida confirmación humana — revisa siempre antes de confirmar. La conexión de cuentas es por QR (el agente muestra el QR; tú lo escaneas con la app de TikTok).

Estado

MVP — transporte stdio (local). El transporte remoto (Streamable HTTP en mcp.hooka.to + OAuth) y la publicación en el MCP Registry oficial son Fase 3 (ver docs/GROWTH-MCP-GEO-PLAN.md).