We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/HadyAhmed00/Android-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
views.py•259 B
from dataclasses import dataclass
from src.tree.views import TreeState
from typing import Literal
@dataclass
class App:
name:str
status:Literal['Maximized','Minimized']
@dataclass
class MobileState:
tree_state:TreeState
screenshot:bytes|None