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

mcp-vysor

v1.0.0

Published

MCP server for visual Android device control via ADB — screenshots, taps, UI inspection for Cursor and AI agents

Readme

MCP Vysor

License: MIT Node.js MCP

Servidor Model Context Protocol (MCP) para controle visual de dispositivos Android via ADB. Permite que agentes de IA no Cursor, Claude Desktop e outros clientes MCP vejam a tela do celular, cliquem em coordenadas, inspecionem elementos da UI e automatizem fluxos — similar ao Vysor, mas integrado nativamente ao seu IDE.

Por que usar?

  • Visualização real: screenshots retornados como imagem para o agente analisar
  • Cliques precisos: tap por pixels, porcentagem ou elemento semântico
  • Grade de coordenadas: identifique posições x,y diretamente na imagem
  • 18 ferramentas: cobre screenshot, gestos, UI dump, shell, apps e teclas
  • Zero config extra: usa o adb que você já tem instalado

Demonstração de fluxo

1. adb_screenshot_with_grid  →  agente vê a tela com coordenadas
2. adb_tap x=996 y=2073      →  clica na aba "Perfil"
3. adb_find_elements         →  encontra "Desativar notificações push"
4. adb_tap_element           →  desativa o toggle
5. adb_screenshot            →  confirma visualmente

Requisitos

Instalação rápida

Opção A — npx (recomendado)

npx -y mcp-vysor

Opção B — clone e build

git clone https://github.com/glira/mcp-vysor.git
cd mcp-vysor
npm install
npm run build

Guia completo: docs/INSTALLATION.md

Configuração no Cursor

Adicione em ~/.cursor/mcp.json:

{
  "mcpServers": {
    "vysor": {
      "command": "npx",
      "args": ["-y", "mcp-vysor"],
      "env": {
        "ADB_PATH": "adb"
      }
    }
  }
}

Alternativa com clone local:

{
  "mcpServers": {
    "vysor": {
      "command": "node",
      "args": ["/caminho/absoluto/mcp-vysor/dist/index.js"],
      "env": { "ADB_PATH": "adb" }
    }
  }
}

Guia detalhado: docs/CURSOR.md

Ferramentas disponíveis

| Categoria | Ferramentas | |-----------|-------------| | Tela | adb_list_devices, adb_get_screen_info, adb_screenshot, adb_screenshot_with_grid, adb_get_current_app | | Coordenadas | adb_tap, adb_tap_percent, adb_tap_from_image_coords, adb_swipe, adb_long_press, adb_get_coordinates | | UI | adb_ui_dump, adb_find_elements, adb_tap_element | | Entrada | adb_input_text, adb_keyevent, adb_shell, adb_start_app, adb_stop_app |

Referência completa com parâmetros: docs/TOOLS.md

Variáveis de ambiente

| Variável | Descrição | Padrão | |----------|-----------|--------| | ADB_PATH | Caminho do executável adb | adb | | ADB_DEVICE | Serial padrão do dispositivo | auto (se 1 device) |

Documentação

| Documento | Conteúdo | |-----------|----------| | Instalação | Pré-requisitos, ADB, build, verificação | | Cursor | Configuração MCP no IDE | | Ferramentas | Referência completa de cada tool | | Arquitetura | Design, módulos, fluxos, limitações | | Troubleshooting | Problemas comuns e soluções | | Publicação | Registro oficial MCP e diretórios | | Contribuindo | Como contribuir | | Changelog | Histórico de versões |

mcp-name: io.github.glira/mcp-vysor

Desenvolvimento

npm run dev    # servidor MCP em modo desenvolvimento
npm run build  # compila TypeScript → dist/

Licença

MIT — Copyright (c) 2026 Gemayel Lira

Autor

Gemayel Liragithub.com/glira