### Install uv Package Manager Source: https://github.com/peakmojo/applescript-mcp/blob/main/README.md Command to install the uv package manager using Homebrew, which is a prerequisite for running the Python server. ```Shell brew install uv ``` -------------------------------- ### Node.js MCP Server Configuration Source: https://github.com/peakmojo/applescript-mcp/blob/main/README.md Configuration snippet for setting up the AppleScript MCP server using Node.js via npx in a tool like Claude Desktop. This defines an MCP server named 'applescript_execute' that runs the installed npm package. ```JSON { "mcpServers": { "applescript_execute": { "command": "npx", "args": [ "@peakmojo/applescript-mcp" ] } } } ``` -------------------------------- ### Python MCP Server Configuration Source: https://github.com/peakmojo/applescript-mcp/blob/main/README.md Configuration snippet for setting up the AppleScript MCP server using Python via uv run in a tool like Claude Desktop. This requires specifying the local path to the cloned repository. ```JSON { "mcpServers": { "applescript_execute": { "command": "uv", "args": [ "--directory", "/path/to/your/repo", "run", "src/applescript_mcp/server.py" ] } } } ``` -------------------------------- ### Clone Repository Source: https://github.com/peakmojo/applescript-mcp/blob/main/README.md Command to clone the project repository from Git. Replace '...' with the actual repository URL. ```Shell git clone ... ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.