We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mobile-dev-inc/Maestro'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
package maestro.device
sealed class Device(
open val description: String,
open val platform: Platform,
open val deviceType: DeviceType
) {
enum class DeviceType {
REAL,
SIMULATOR,
EMULATOR,
BROWSER
}
data class Connected(
val instanceId: String,
override val description: String,
override val platform: Platform,
override val deviceType: DeviceType,
) : Device(description, platform, deviceType)
data class AvailableForLaunch(
val modelId: String,
val language: String?,
val country: String?,
override val description: String,
override val platform: Platform,
override val deviceType: DeviceType,
) : Device(description, platform, deviceType)
}