We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/peakmojo/applescript-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•483 B
import asyncio
import logging
from . import server
logging.basicConfig(level=logging.DEBUG)
logger = logging.getLogger("mcp_applescript")
def main() -> None:
logger.debug("Starting applescript-mcp main()")
# Run the async main function
logger.debug("About to run server.main()")
asyncio.run(server.main())
logger.debug("Server main() completed")
if __name__ == "__main__":
main()
# Expose important items at package level
__all__ = ["main", "server"]