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

@rayven122/mcp-ie-migration-vrt

v0.2.0

Published

MCP server for paired Edge IE mode and Chromium Edge visual regression testing

Readme

MCP IE Migration VRT

Edge IEモードの移行前画面とChromium Edgeの移行後画面を、2つのSeleniumセッションで操作・撮影し、Playwright Testで画像比較するMCPサーバーです。

Edge IE mode ── Selenium screenshot ─┐
                                     ├─ Playwright VRT ─ pass / diff / report
Chromium Edge ─ Selenium screenshot ─┘

必要環境

  • Windows 10/11またはWindows Server
  • Microsoft Edge Stable
  • Edge IEモードポリシー(InternetExplorerIntegrationLevel=1
  • IEDriverServer 4.0.0.0以上
  • Node.js 20以上(Claude Desktop同梱ランタイム外で実行する場合)
  • ログオン中の非昇格Windowsセッション
  • Edge/IEズームとWindows表示倍率を100%に固定

IEモードはheadless実行できません。RDP利用中は、撮影の途中で解像度や表示倍率を変更しないでください。 IEDriverがEdgeをIEモードで起動するため、Enterprise Mode Site Listは必須ではありません。

事前診断:

powershell -ExecutionPolicy Bypass -File scripts\windows\Test-IeMigrationVrtPrerequisites.ps1

インストール

1. MCPBをインストール

最新のGitHub Releaseから.mcpbをダウンロードし、Windows上で開いてClaude Desktopへインストールします。

保存先の初期設定は不要です。MCPBにはMCPサーバーと実行時依存関係が含まれます。

2. Skillをインストール

Claude Code:

npx skills add rayven122/mcp-ie-migration-vrt --agent claude-code

Codex:

npx skills add rayven122/mcp-ie-migration-vrt --agent codex

SkillはMCPBには含まれず、別途インストールされます。

使い方

エージェントへ次のように依頼します。

$ie-migration-vrt を使って、移行前と移行後の注文一覧を同じ検索結果まで操作し、画面差分を確認してください。

エージェントは次の順に処理します。

  1. start_vrt_browsersでEdge IEモードとChromium Edgeを起動
  2. sessionIdを指定して両画面を同じ業務状態まで個別に操作
  3. vrtで現在の画面を比較
  4. before.pngafter.pngdiff.pngreport.jsonを保存
  5. 必要に応じて移行後画面を修正し、再比較
  6. 両セッションを終了

既定の比較条件:

  • Viewport: 1200 x 650
  • maxDiffPixelRatio: 0.005
  • threshold: 0.2
  • ブラウザのタブやアドレスバーは撮影対象外
  • 画像はリサイズ・トリミングせず、サイズが異なる場合も差分画像を生成してAIレビュー

詳細なチェックポイントと撮影規約はdocs/vrt-standard.mdを参照してください。MCPからはvrt-standard://currentで取得できます。

主なMCP Tool

| Tool | 用途 | |---|---| | start_vrt_browsers | IEモードとChromium Edgeを同時起動 | | navigate / interact / send_keys | 指定セッションを操作 | | accessibility_snapshot | 画面構造と操作対象を取得 | | execute_script | DOM・computed style・スクロールを確認 | | diagnostics | console・JavaScript error・networkログを取得 | | vrt | 2セッションの現在画面を比較し、既定でbefore・after・diff画像をAIへ返却 | | take_screenshot | 現在画面を返すか、outputPathで指定した場所へ保存 | | close_session | 指定セッションを終了 |

その他のSelenium ToolもsessionIdを指定して利用できます。

補足

  • Windows/IIS・ASP.NET 4.8・VB.NET Web Formsで動作確認済みです。
  • VRT成果物は既定で相対パスartifacts/vrtへ保存されます。呼び出しごとにvrt.outputDirectoryで変更できます。
  • vrt.returnImagesall(既定)、diffnoneから選択できます。寸法不一致はツールエラーではなくstatus: "different"として元画像・差分・診断情報を確認できます。
  • 通常スクリーンショットは既定で画像データを直接返します。保存する場合だけtake_screenshot.outputPathを指定します。
  • MCPB署名は公式CLIの既知不具合により保留中です。詳細はdocs/mcpb-signing.mdを参照してください。
  • 開発・ローカルビルドはpackage.jsonのnpm scriptsを参照してください。

License

MIT