check_expo_dev_server
Verify Expo development server status and retrieve app information to ensure proper functionality during development and testing workflows.
Instructions
Check if Expo development server is running and get app status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
host | No | Host where Expo dev server is running | localhost |
port | No | Port where Expo dev server is running |
Input Schema (JSON Schema)
{
"properties": {
"host": {
"default": "localhost",
"description": "Host where Expo dev server is running",
"type": "string"
},
"port": {
"default": 8081,
"description": "Port where Expo dev server is running",
"type": "number"
}
},
"type": "object"
}