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

@kognar/nginx-manager-mcp-server

v0.1.2

Published

MCP server wrapping the Nginx Proxy Manager API

Readme

@kognar/nginx-manager-mcp-server

MCP server que abstrai chamadas à API do Nginx Proxy Manager.

Instalação

npm install
npm run build

Configuração

Aceita via argumentos de CLI ou variáveis de ambiente (CLI tem precedência):

| flag | env | descrição | | --- | --- | --- | | --base-url (ou --url) | NPM_BASE_URL | URL completa da API do NPM (use como está — não adicione porta) | | --email (ou --user) | NPM_EMAIL | email de login | | --password (ou --pass)| NPM_PASSWORD | senha |

npx @kognar/nginx-manager-mcp-server \
  --base-url https://npm.example.com \
  --email [email protected] \
  --password changeme

Uso com Claude Code / Desktop

Adicione no claude_desktop_config.json (ou .mcp.json):

{
  "mcpServers": {
    "nginx-manager": {
      "command": "npx",
      "args": [
        "-y",
        "@kognar/nginx-manager-mcp-server",
        "--base-url", "https://npm.example.com",
        "--email", "[email protected]",
        "--password", "changeme"
      ]
    }
  }
}

Alternativa com env vars:

{
  "mcpServers": {
    "nginx-manager": {
      "command": "npx",
      "args": ["-y", "@kognar/nginx-manager-mcp-server"],
      "env": {
        "NPM_BASE_URL": "https://npm.example.com",
        "NPM_EMAIL": "[email protected]",
        "NPM_PASSWORD": "changeme"
      }
    }
  }
}

Tools disponíveis

  • Proxy hostsnpm_list_proxy_hosts, npm_get_proxy_host, npm_create_proxy_host, npm_update_proxy_host, npm_delete_proxy_host, npm_enable_proxy_host, npm_disable_proxy_host
  • Redirection hosts — idem com redirection_host
  • 404 hosts — idem com dead_host
  • Streams — idem com stream
  • Certificatesnpm_list_certificates, npm_get_certificate, npm_create_certificate_letsencrypt, npm_create_certificate_custom, npm_renew_certificate, npm_test_certificate_http_reach, npm_delete_certificate
  • Access listsnpm_list_access_lists, npm_get_access_list, npm_create_access_list, npm_update_access_list, npm_delete_access_list
  • Usersnpm_list_users, npm_get_user, npm_get_me, npm_create_user, npm_update_user, npm_set_user_password, npm_set_user_permissions, npm_delete_user
  • Miscnpm_get_settings, npm_get_setting, npm_update_setting, npm_get_audit_log, npm_get_reports_hosts, npm_health

Desenvolvimento

npm run dev        # executa via tsx
npm run typecheck  # valida tipos sem emitir

Autenticação usa POST /api/tokens com cache em memória e refresh automático 1 min antes da expiração.

Licença

AGPL-3.0