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

@emuluxe/mcp-server

v1.0.3

Published

Emuluxe Mobile Simulation MCP Server

Readme

Emuluxe MCP Server 🚀

NPM Version License

Emuluxe MCP is the ultimate Model Context Protocol (MCP) server for mobile web simulation. It allows AI agents (like those in Cursor, VS Code, and Antigravity) to instantly launch mobile environments to test and verify web applications.

🌟 Features

  • Zero-Install: Run instantly with npx.
  • Multi-IDE Ready: Native support for Antigravity, Cursor, and VS Code.
  • Instant Launch: Deep-link integration triggers simulation panels automatically.
  • Production-Grade: Built on the official Emuluxe Simulation API.

🚀 Quick Start (Zero-Install)

No cloning or installation required. Just add it to your IDE's MCP configuration.

🍱 1. Get your Token

  1. Sign up/Login at app.emuluxe.com.
  2. Go to SettingsAPI Tokens.
  3. Copy your EMULUXE_TOKEN.

🎨 2. Add to your IDE

Cursor (Native Support)

  1. Open Cursor Settings (Cmd + Shift + J).
  2. Go to FeaturesMCP Servers.
  3. Click + Add New MCP Server.
  4. Name: Emuluxe
  5. Type: command
  6. Command:
    npx -y @emuluxe/mcp-server
  7. Environment Variables:
    • EMULUXE_TOKEN: your_token_here
    • EMULUXE_IDE: cursor

VS Code (via Roo Code / Cline)

Add this to your mcp_config.json:

"emuluxe": {
  "command": "npx",
  "args": ["-y", "@emuluxe/mcp-server"],
  "env": {
    "EMULUXE_TOKEN": "your_token_here"
  }
}

Antigravity

Add this to your .gemini/antigravity/mcp_config.json:

"emuluxe": {
  "command": "npx",
  "args": ["-y", "@emuluxe/mcp-server"],
  "env": {
    "EMULUXE_TOKEN": "your_token_here"
  }
}

🛠 Available Tools

simulate

Launches a mobile simulation of a URL on a specific device.

Arguments:

  • url (string, required): The URL to simulate (e.g., https://google.com).
  • device (string, optional): The device ID (e.g., iphone-15-pro-max, pixel-8-pro). Defaults to iphone-15-pro-max.

🔍 Troubleshooting

Extension Doesn't Open

  • Ensure you have the Emuluxe VS Code Extension installed.
  • Check the terminal output of the MCP server. It always provides a Manual Bridge Link if the deep-link fails.

Authentication Errors

  • Verify your EMULUXE_TOKEN is correct and hasn't expired.
  • You can also set the token globally using the Emuluxe CLI.

📄 License

ISC © Emuluxe