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

@openmobile/mcp-server

v0.1.2

Published

OpenMobile MCP Server - AI-powered SDK integration and analytics

Readme

@openmobile/mcp-server

OpenMobile MCP (Model Context Protocol) Server - Connect AI assistants to your mobile analytics and SDUI platform.

Quick Start

# Initialize OpenMobile in your project
npx @openmobile/mcp-server init

# This will:
# 1. Detect your framework (React Native, Flutter, iOS, Android, Web)
# 2. Authenticate with your API key
# 3. Analyze your codebase for screens and events
# 4. Install the appropriate SDK
# 5. Configure MCP for your AI tools (Claude, Cursor, VS Code)
# 6. Verify the integration works

CLI Commands

init

Complete interactive setup wizard. Handles everything from authentication to SDK installation and MCP configuration.

npx @openmobile/mcp-server init

integrate

SDK integration only (skip MCP configuration).

npx @openmobile/mcp-server integrate

configure

Configure MCP for AI tools.

npx @openmobile/mcp-server configure

doctor

Verify your installation and check for issues.

npx @openmobile/mcp-server doctor

status

Display current configuration status.

npx @openmobile/mcp-server status

serve

Start the MCP server (used by AI tools).

npx @openmobile/mcp-server serve

MCP Tools

Once configured, AI assistants can use these tools:

Analysis

  • analyze_project - Detect framework, screens, and suggest events
  • generate_integration - Generate SDK integration code
  • validate_integration - Verify SDK is working

Analytics

  • get_insights - Retrieve behavioral insights
  • get_analytics - Get analytics data (events, screens, users, sessions)
  • get_funnel - Analyze conversion funnels

SDUI

  • list_screens - List all SDUI screens
  • create_screen - Create a new SDUI screen (survey, onboarding, tooltip, modal, banner)
  • deploy_screen - Deploy a screen to production with optional rollout percentage

Supported Frameworks

| Framework | SDK Package | |-----------|-------------| | Expo | @openmobile/react-native | | React Native | @openmobile/react-native | | Flutter | openmobile_sdk | | iOS (Swift) | OpenMobileSDK | | Android (Kotlin) | com.openmobile:sdk | | Web (React) | @openmobile/web |

AI Tool Configuration

Claude Desktop

Config location: ~/.claude/claude_desktop_config.json

{
  "mcpServers": {
    "openmobile": {
      "command": "npx",
      "args": ["-y", "@openmobile/mcp-server", "serve"],
      "env": {
        "OPENMOBILE_API_KEY": "pk_your_key_here"
      }
    }
  }
}

Cursor

Config location: ~/.cursor/mcp.json

{
  "servers": {
    "openmobile": {
      "command": "npx",
      "args": ["-y", "@openmobile/mcp-server", "serve"],
      "env": {
        "OPENMOBILE_API_KEY": "pk_your_key_here"
      }
    }
  }
}

VS Code (Continue Extension)

Config location: ~/.continue/config.json

{
  "mcpServers": [
    {
      "name": "openmobile",
      "command": "npx",
      "args": ["-y", "@openmobile/mcp-server", "serve"],
      "env": {
        "OPENMOBILE_API_KEY": "pk_your_key_here"
      }
    }
  ]
}

Project Configuration

After running init, a .openmobilerc file is created in your project:

{
  "version": "1.0",
  "apiKey": "pk_****...",
  "framework": "expo",
  "screens": ["home", "profile", "settings"],
  "events": ["purchase_complete", "signup_complete"],
  "createdAt": "2024-01-15T10:00:00Z",
  "updatedAt": "2024-01-15T10:00:00Z"
}

Environment Variables

  • OPENMOBILE_API_KEY - Your OpenMobile API key (pk_* for publishable, sk_* for secret)

Development

# Clone the repository
git clone https://github.com/openmobile-dev/openmobile.git
cd openmobile/mcp-server

# Install dependencies
npm install

# Build
npm run build

# Test locally
npm run dev

License

MIT