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

lookerhost-mcp-server

v1.0.0

Published

MCP server for the LookerHost cloud platform — lets AI agents provision and manage VPS, PaaS apps, managed databases and WordPress sites through the LookerHost API

Readme

lookerhost-mcp-server

Servidor MCP (Model Context Protocol) sobre la API de LookerHost. Permite que un agente (Claude u otro cliente MCP) cree y gestione infraestructura de la plataforma sin pasos manuales: VPS, Web Hosting (CloudPanel), apps PaaS desde un repo Git, bases de datos gestionadas y sitios WordPress.

Envuelve lookerhost-api (nunca Proxmox/Coolify directo), así hereda todo el plano de control de la plataforma: aislamiento multi-tenant, entitlements/cuotas por cuenta, rate-limits, auditoría y protección de VMs adoptadas.

Credencial

Usa una API key (lh_live_…) emitida por POST /api/auth/api-keys (portal del cliente). La llave queda atada a una cuenta (Customer) y a un set de scopes — el servidor MCP solo ve/opera los servicios de esa cuenta, y el backend rechaza con insufficient-scope lo que la llave no permita.

| Scope | Habilita | |---|---| | vps:read | listar servicios, detalle, métricas, catálogo, actividad | | vps:write | crear VPS y Web Hosting | | vps:power | start / stop / restart | | apps:write | desplegar apps, crear bases de datos y WordPress, redeploy | | service:delete | eliminar servicios (además la tool exige confirm: true) |

Instalación

Publicado en npm — no hace falta clonar nada:

{
  "mcpServers": {
    "lookerhost": {
      "command": "npx",
      "args": ["-y", "lookerhost-mcp-server"],
      "env": {
        "LOOKERHOST_API_URL": "https://api.lookerhost.com",
        "LOOKERHOST_API_KEY": "lh_live_..."
      }
    }
  }
}

O con Claude Code CLI:

claude mcp add lookerhost \
  -e LOOKERHOST_API_URL=https://api.lookerhost.com \
  -e LOOKERHOST_API_KEY=lh_live_... \
  -- npx -y lookerhost-mcp-server

La API key se emite en el dashboard de LookerHost: Settings → API keys (cuenta de cliente). El secreto se muestra una sola vez.

Desde el código (desarrollo)

pnpm install && pnpm build
# y en la config MCP: "command": "node", "args": ["/ruta/a/lookerhost-mcp/dist/index.js"]

Tools

Lecturalookerhost_list_services, lookerhost_get_service, lookerhost_get_metrics, lookerhost_list_plans, lookerhost_get_activity, lookerhost_get_deploy_history

Creaciónlookerhost_create_vps, lookerhost_create_webhosting, lookerhost_deploy_app, lookerhost_create_database, lookerhost_create_wordpress

Operaciónlookerhost_power_service (resuelve VPS↔PaaS automáticamente y traduce restartreboot en Proxmox), lookerhost_redeploy_app

Destrucciónlookerhost_delete_service (requiere confirm: true explícito además del scope service:delete; la plataforma rechaza VMs protegidas)

Las creaciones son asíncronas: responden provisioning y el agente debe sondear lookerhost_get_service hasta running (1–3 min típico).

Desarrollo

pnpm build && LOOKERHOST_API_URL=http://localhost:3001 LOOKERHOST_API_KEY=lh_live_... node dist/index.js
# inspector interactivo:
npx @modelcontextprotocol/inspector node dist/index.js