Skip to main content
Glama

AppleScript MCP Server

by peakmojo
__init__.py615 B
import argparse import asyncio import logging from . import server logging.basicConfig(level=logging.DEBUG) logger = logging.getLogger('mcp_applescript') def main(): logger.debug("Starting applescript-mcp main()") parser = argparse.ArgumentParser(description='Applescript MCP Server') args = parser.parse_args() # Run the async main function logger.debug("About to run server.main()") asyncio.run(server.main(args.access_token)) logger.debug("Server main() completed") if __name__ == "__main__": main() # Expose important items at package level __all__ = ["main", "server"]

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/peakmojo/applescript-mcp'

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