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.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
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 using UI automation. Parameters: name (string), phone (string)
Take a screenshot of the current screen.
Record the screen for a specified duration. Parameters: duration (integer)
Launch an app using its name. Parameters: app_name (string)
Launch an app using its name as an alternative method if the app command fails. Parameters: app_name (string)
Close the specified app by its package name. Parameters: package_name (string)
List installed apps with basic info or detailed info. Parameters: page (optional integer), page_size (optional integer), detailed (optional boolean)
Launch a specific activity using the package name and activity name. Parameters: package_name (string), activity_name (string, optional)
Open a specified URL in the device's default browser. Parameters: url (string)
Analyze the current screen and provide structured information about UI elements.
Perform various screen interaction actions such as tap, swipe, text input, etc. Parameters: action (string), params (optional dictionary)
Search for nearby Points of Interest (POIs) based on coordinates and keywords. Parameters: coordinates (string), keywords (string), radius (integer)
Monitor UI changes based on specified criteria such as element appearance or disappearance. Parameters: watch_for (string), text (optional string), id (optional string), class_name (optional string), interval (optional float), duration (optional float)