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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@iflow-mcp/phonepi-mcp

v1.0.29

Published

PhonePi MCP - CLI tool for phone control via WebSocket

Downloads

10

Readme

PhonePi MCP

A MCP server that lets you control your phone from your favorite AI apps!

Prerequisites

You need to setup the PhonePi MCP app on your phone. Please visit PhonePi MCP for instructions.

MCP Server Setup

Simply follow the steps below to setup the server in your favorite AI apps such as Claude, Cline or Cursor.

Installation

Install the package globally:

npm install -g phonepi-mcp

Or run directly with npx:

npx phonepi-mcp

Setup

Simply add the following MCP config to your AI app:

{
  "mcpServers": {
    "phonepi-mcp": {
      "command": "npx",
      "args": [
        "phonepi-mcp",
        "start"
      ]
    }
  }
}

Save the file with the above settings. This is all you need for your setup besides the mobile app.

Connecting

  • Ensure your phone and your desktop are on the same network. Using something like Tailscale is recommended for convenience, but it's optional.
  • Enter the local ip address and port (11041) in the companion mobile app to connect to the server.
  • Once everything's connected correctly, you can simply start asking your AI assistant to do stuff! For example, try asking it to send a test notification to your phone.

MCP server management cli (Optional)

Standalone usage

The setup instructions above is all you need for setting it up with respect to MCP clients like Cline, Claude Desktop etc.

But, PhonePi MCP also provides a standalone command-line interface for you to manage the MCP server from outside the clients.

Commands

  • start: Start the MCP server
  • stop: Stop the running MCP server
  • status: Check if the MCP server is running
  • restart: Restart the MCP server

Starting the Server

phonepi-mcp start

Options:

  • -p, --port <port>: Specify the port to run the server on (default: 11041)
  • -b, --background: Run the server in the background

Example:

phonepi-mcp start -p 8080 -b

Checking Server Status

phonepi-mcp status

Stopping the Server

phonepi-mcp stop

Restarting the Server

phonepi-mcp restart

Options:

  • -p, --port <port>: Specify the port to run the server on (default: 11041)
  • -b, --background: Run the server in the background

Connecting Your Phone

  1. Install the PhonePi MCP app on your phone
  2. Start the server on your computer using phonepi-mcp start
  3. In the app, connect to your computer's IP address and port (default 11041)

Features

  • Remote phone control via MCP protocol
  • Get battery level
  • Send SMS messages
  • Make phone calls
  • Find your phone by making it beep
  • Set timers and alarms
  • Copy text to clipboard
  • Manage contacts
  • Send notifications

Development

Build the package:

npm run build

Run in development mode:

npm run dev

License

MIT