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

@deviatik/mcp

v0.5.1

Published

Servidor MCP para gestionar la plataforma Deviatik desde IAs (Claude, opencode, Cursor, VS Code, Codex, Antigravity…)

Readme

@deviatik/mcp

Servidor MCP para gestionar tu plataforma Deviatik (instancias, bases de datos, apps y backends InsForge) desde herramientas de IA que hablan MCP: Claude Code/Desktop, opencode, Cursor, VS Code, Codex, Antigravity…

Configuración (variables de entorno)

| Variable | Descripción | | --- | --- | | DEVIATIK_URL | Base del panel, ej. https://manager.tudominio.com | | DEVIATIK_TOKEN | Token de API (panel → Ajustes → Tokens de API) | | DEVIATIK_SCOPE | admin | client | reseller — opcional; por defecto se deduce del token |

Los tokens son de lectura + acciones seguras. Las operaciones destructivas (delete_instance) requieren un token con permisos total.

Uso con Claude Code

claude mcp add deviatik \
  -e DEVIATIK_URL=https://manager.tudominio.com \
  -e DEVIATIK_TOKEN=dvtk_xxx \
  -- npx -y @deviatik/mcp

Las flags -e van antes del --. Tras cambiar el token, reinicia el cliente (el servidor lee el env al arrancar).

Herramientas

Ver / listar: list_instances, get_instance, instance_access, instance_services, instance_usage, instance_stats, instance_events, instance_logs, list_deployments, deployment_log, list_clients, list_nodes, list_projects, list_products, server_metrics.

Crear: create_app, create_database, create_insforge_backend, adapt_compose, create_compose.

Operar: redeploy_app, start_instance, stop_instance, restart_instance, create_backup, update_insforge_image, change_tier.

Variables: get_app_env, set_app_env, get_compose_env, set_compose_env.

Archivos (compose): list_files, read_file, write_file.

Base de datos: db_tables, db_browse, db_query (SQL real).

Webhooks: list_webhooks, create_webhook, test_webhook, delete_webhook.

Destructivas (token "total"): delete_instance, delete_webhook.

Skills (playbooks)

Prompts invocables que guían a tu IA por flujos completos del producto: skill_desplegar_app, skill_lanzar_backend, skill_desplegar_stack (docker-compose), skill_diagnosticar, skill_reparar_instancia, skill_respaldo_seguro. (Más la guía general deviatik_guia.)

create_compose despliega un docker-compose propio en un nodo dedicado (o el control plane, solo admin); el YAML se sanea y el servicio web se enruta por el dominio.

Referencia completa, ejemplos y solución de problemas: tools/README.md del repositorio.