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.
Aún no hay reseñas. ¡Sé el primero en reseñar!
Inicia sesión para unirte a la conversación
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 (integer)
Get sent messages with pagination. Parameters: limit (integer)
Get contacts with pagination. Parameters: limit (integer)
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 the specified duration in seconds. Parameters: duration (integer)
Launch the specified app. Parameters: app name (string)
Launch the specified app using an alternative method, if the app command fails. Parameters: app name (string)
Close the specified app. Parameters: package name (string)
List installed apps with basic info or detailed info depending on parameters. Parameters: page (integer, optional), page size (integer, optional), detailed (boolean, optional)
Launch a specific activity of an app using its package name 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, optional), max_elements (integer, optional)
Execute screen interaction actions. Parameters: action (string), params (dictionary, optional)
Search for nearby points of interest with phone numbers based on the specified coordinates and keywords. Parameters: latitude (float), longitude (float), keywords (string), radius (integer)
Monitor the UI for changes based on specified criteria. Parameters: interval (float, optional), duration (integer, optional), watch-for (string, optional), text (string, optional), id (string, optional), class-name (string, optional), raw (boolean, optional)