We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/BeckhamLabsLLC/linux-desktop-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•373 B
"""Linux Desktop Automation MCP Server.
Provides Chrome-extension-level semantic element targeting for native Linux
desktop applications using AT-SPI2 (Assistive Technology Service Provider Interface).
"""
__version__ = "0.1.0"
def main():
"""Entry point for the MCP server."""
from .server import main as _main
_main()
__all__ = ["main", "__version__"]