Skip to main content
Glama
provider.py532 B
from __future__ import annotations import asyncio from typing import List from .client import PyMobileDevice3Client from .models import DeviceInfo, AppInfo class DeviceInfoProvider: def __init__(self, udid: str): self.client = PyMobileDevice3Client(udid) async def get_device_info(self) -> DeviceInfo: return await asyncio.to_thread(self.client.get_device_info_sync) async def list_installed_apps(self) -> List[AppInfo]: return await asyncio.to_thread(self.client.list_installed_apps_sync)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lakr233/iphone-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server