PhonePi Mobile Control
STDIOMCP server that lets you control your phone from AI apps.
MCP server that lets you control your phone from AI apps.
A MCP server that lets you control your phone from your favorite AI apps!
You need to setup the PhonePi MCP app on your phone. Please visit PhonePi MCP for instructions.
Simply follow the steps below to setup the server in your favorite AI apps such as Claude, Cline or Cursor.
Install the package globally:
npm install -g phonepi-mcp
Or run directly with npx:
npx phonepi-mcp
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.
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.
start
: Start the MCP serverstop
: Stop the running MCP serverstatus
: Check if the MCP server is runningrestart
: Restart the MCP serverphonepi-mcp start
Options:
-p, --port <port>
: Specify the port to run the server on (default: 11041)-b, --background
: Run the server in the backgroundExample:
phonepi-mcp start -p 8080 -b
phonepi-mcp status
phonepi-mcp stop
phonepi-mcp restart
Options:
-p, --port <port>
: Specify the port to run the server on (default: 11041)-b, --background
: Run the server in the backgroundphonepi-mcp start
Build the package:
npm run build
Run in development mode:
npm run dev
MIT