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. Parameter: 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. Parameter: limit (integer)
Get sent messages with pagination. Parameter: limit (integer)
Get contacts with pagination. Parameter: limit (integer)
Create a new contact with the specified name and phone number using UI automation. Parameters: name (string), phone (string)
Take a screenshot of the current screen.
Record the screen for a specified duration. Parameter: duration (integer in seconds)
Launch the specified app by name. Parameter: app name (string)
Launch the specified app by name, alternative method. Parameter: app name (string)
Close the specified app using its package name. Parameter: package name (string)
List installed apps with basic info or detailed info. Options: --page, --page-size, --detailed
Launch a specific activity using the package name and activity name. Parameter: package name (string), activity name (string, optional)
Open the specified URL in the device's default browser. Parameter: URL (string)
Analyze the current screen and provide structured information about UI elements.
Execute various screen interaction actions such as tap, swipe, input text, etc. Parameters: action (string), optional parameters (dictionary)
Search nearby points of interest (POIs) with phone numbers. Parameters: coordinates (string), keywords (string), radius (integer)
Monitor UI changes based on specified criteria. Parameters: interval (float), duration (integer), and options for what to watch for (text, id, class)