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 device.
Record the screen for a specified duration. Parameters: duration (integer)
Launch an application by name. Parameters: app name (string)
Close an application by its package name. Parameters: package name (string)
List installed applications. Parameters: page (optional integer), page-size (optional integer), detailed (optional boolean)
Launch a specific activity by its package name and activity name. Parameters: package name (string), activity name (string)
Open a URL in the device's default browser. Parameters: URL (string)
Analyze the current screen and provide structured information about UI elements. Parameters: include_screenshot (optional boolean), max_elements (optional integer)
Monitor UI for changes based on specified conditions. Parameters: interval (optional float), duration (optional integer), watch-for (string), text (optional string), id (optional string), class-name (optional string)
Search for nearby points of interest (POIs) based on given coordinates and keywords. Parameters: coordinates (string), keywords (string), radius (integer)