We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kurojs/wayland-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""Wayland MCP package initialization."""
from .app import VLMAgent, capture_screenshot
from .add_rulers import add_rulers
from .mouse_utils import MouseController
from .server_mcp import main
__all__ = [
'VLMAgent',
'capture_screenshot',
'add_rulers',
'MouseController',
'main'
]