Phone MCP is a Python-based server that enables AI assistants to control Android phones through ADB commands. Developed by hao, it provides tools for making calls, sending text messages, taking screenshots, recording screens, managing contacts, launching apps, and retrieving system information. The implementation includes specialized modules for different phone functionalities and supports map-related features when an API key is configured. It's particularly useful for scenarios requiring remote phone control, automated testing, or accessibility assistance, allowing AI agents to interact with mobile devices without direct physical manipulation.
No reviews yet. Be the first to review!
Sign in to join the conversation
Make a call to the specified phone number. Parameters: phone number (string)
End the current call.
Send an SMS to the specified phone number with the given message. Parameters: phone number (string), message (string)
Get received messages with pagination. Parameters: --limit (number)
Get sent messages with pagination. Parameters: --limit (number)
Get contacts with pagination. Parameters: --limit (number)
Create a new contact with the specified name and phone number. Parameters: name (string), phone (string)
Take a screenshot of the current screen.
Record the screen for a specified duration. Parameters: --duration (number in seconds)
Launch the specified app by name. Parameters: app name (string)
Launch the specified app by name using an alternative method. Parameters: app name (string)
Close the specified app by package name. Parameters: package name (string)
List installed apps with basic info. Parameters: --page (number), --page-size (number)
Launch a specific activity using the package and activity name. Parameters: package name (string), activity name (string)
Open the specified URL in the device's default browser. Parameters: URL (string)
Analyze the current screen and provide structured information about UI elements. Parameters: include_screenshot (boolean), max_elements (number)
Execute screen interaction actions. Parameters: action (string), params (optional dictionary)
Search for nearby points of interest with phone numbers based on provided coordinates. Parameters: latitude (number), longitude (number), keywords (string), radius (number)
Monitor UI changes and wait for specific elements to appear or disappear. Parameters: --interval (number), --duration (number), --watch-for (string), --text (string), --id (string), --class-name (string)