.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/peakmojo/applescript-mcp
home/mcp-servers/peakmojo/applescript-mcp
peakmojo avatar

applescript-mcp

bypeakmojo· 1 MCP server

Installs

384

Stars

462

Forks

58

Category

Productivity & Workflow

View on GitHub

TL;DR

A Model Context Protocol (MCP) server that lets you run AppleScript code to interact with Mac. This MCP is intentionally designed to be simple, straightforward, intuitive, and require minimal setup.

How to install applescript-mcp?

peakmojo/applescript-mcp
$git clone https://github.com/peakmojo/applescript-mcp

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install applescript-mcp by running `git clone https://github.com/peakmojo/applescript-mcp`, then use it for the current task and follow its documentation at https://github.com/peakmojo/applescript-mcp.

Files · 1

View on GitHub
README.md
1# AppleScript MCP Server (Dual access: python and node.js)
2 
3[![npm version](https://img.shields.io/npm/v/@peakmojo/applescript-mcp.svg)](https://www.npmjs.com/package/@peakmojo/applescript-mcp) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4 
5## Overview
6 
7A Model Context Protocol (MCP) server that lets you run AppleScript code to interact with Mac. This MCP is intentionally designed to be simple, straightforward, intuitive, and require minimal setup.
8 
9I can't believe how simple and powerful it is. The core code is <100 line of code.
10 
11<a href="https://glama.ai/mcp/servers/@peakmojo/applescript-mcp">
12 <img width="380" height="200" src="https://glama.ai/mcp/servers/@peakmojo/applescript-mcp/badge" alt="AppleScript Server MCP server" />
13</a>
14 
15https://github.com/user-attachments/assets/b85e63ba-fb26-4918-8e6d-2377254ee388
16 
17## Features
18 
19* Run AppleScript to access Mac applications and data
20* Interact with Notes, Calendar, Contacts, Messages, and more
21* Search for files using Spotlight or Finder
22* Read/write file contents and execute shell commands
23* Remote execution support via SSH
24 
25## Example Prompts
26 
27```
28Create a reminder for me to call John tomorrow at 10am
29```
30 
31```
32Add a new meeting to my calendar for Friday from 2-3pm titled "Team Review"
33```
34 
35```
36Create a new note titled "Meeting Minutes" with today's date
37```
38 
39```
40Show me all files in my Downloads folder from the past week
41```
42 
43```
44What's my current battery percentage?
45```
46 
47```
48Show me the most recent unread emails in my inbox
49```
50 
51```
52List all the currently running applications on my Mac
53```
54 
55```
56Play my "Focus" playlist in Apple Music
57```
58 
59```
60Take a screenshot of my entire screen and save it to my Desktop
61```
62 
63```
64Find John Smith in my contacts and show me his phone number
65```
66 
67```
68Create a folder on my Desktop named "Project Files"
69```
70 
71```
72Open Safari and navigate to apple.com
73```
74 
75```
76Tell me how much free space I have on my main drive
77```
78 
79```
80List all my upcoming calendar events for this week
81```
82 
83## Usage with Claude Desktop
84 
85### Node.js
86```json
87{
88 "mcpServers": {
89 "applescript_execute": {
90 "command": "npx",
91 "args": [
92 "@peakmojo/applescript-mcp"
93 ]
94 }
95 }
96}
97```
98 
99### Python (uvx)
100 
101No clone needed — run directly from the git repo:
102 
103```json
104{
105 "mcpServers": {
106 "applescript_execute": {
107 "command": "uvx",
108 "args": [
109 "--from",
110 "git+https://github.com/peakmojo/applescript-mcp",
111 "mcp-server-applescript"
112 ]
113 }
114 }
115}
116```
117 
118### Python (local development)
119 
120For local development, clone the repo and use `uv` to run from source:
121 
122```
123brew install uv
124git clone https://github.com/peakmojo/applescript-mcp.git
125```
126 
127```json
128{
129 "mcpServers": {
130 "applescript_execute": {
131 "command": "uv",
132 "args": [
133 "--directory",
134 "/path/to/your/repo",
135 "run",
136 "mcp-server-applescript"
137 ]
138 }
139 }
140}
141```
142 
143## Development
144 
145### Setup
146 
147```bash
148brew install uv
149uv sync --dev
150```
151 
152### Run all checks (in parallel)
153 
154```bash
155uv run check
156```
157 
158This runs linting, formatting, type checking, and tests with 100% coverage — all in parallel.
159 
160### Individual commands
161 
162```bash
163uv run lint # ruff linter
164uv run format # ruff auto-format
165uv run typecheck # pyrefly type checker
166uv run test # pytest with 100% coverage enforcement
167```
168 
169## Docker Usage
170 
171When running in a Docker container, you can use the special hostname `host.docker.internal` to connect to your Mac host:
172 
173### Configuration
174```json
175{
176 "mcpServers": {
177 "applescript_execute": {
178 "command": "npx",
179 "args": [
180 "@peakmojo/applescript-mcp",
181 "--remoteHost", "host.docker.internal",
182 "--remoteUser", "yourusername",
183 "--remotePassword", "yourpassword"
184 ]
185 }
186 }
187}
188```
189 
190This allows your Docker container to execute AppleScript on the Mac host system. Make sure:
191 
1921. SSH is enabled on your Mac (System Settings → Sharing → Remo

Preview

peakmojo/applescript-mcppeakmojo/applescript-mcp

# AppleScript MCP Server (Dual access: python and node.js)

[![npm version](https://img.shields.io/npm/v/@peakmojo/applescript-mcp.svg)](https://www.npmjs.com/package/@peakmojo/applescript-mcp) [![License: MIT](https://i

## Overview

A Model Context Protocol (MCP) server that lets you run AppleScript code to interact with Mac. This MCP is intentionally designed to be simple, straightforward,

Repopeakmojo/applescript-mcp
TypeMCP Servers
CategoryProductivity & Workflow
UpdatedFeb 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPapplescriptmacos

Related

6 picks
Type
  1. homeassistant-ai avatarha-mcpComprehensive Model Context Protocol server for managing Home Assistant through AI assistants.MCP ServersJul 2026351k4.1k
  2. taylorwilsdon avatargoogle_workspace_mcpGoogle Workspace MCP server for Gmail, Drive, Calendar, Docs, Sheets, Slides, Forms, Tasks, Chat.MCP ServersJul 2026129k2.9k
  3. basicmachines-co avatarbasic-memoryLocal-first knowledge management with bi-directional LLM sync via Markdown files.MCP ServersJul 202644k3.5k
  4. mbailey avatarvoicemodeNatural voice conversations for AI assistants - STT/TTS via MCPMCP ServersJul 202638k1.3k
  5. githejie avatarmcp-server-calculatorA Model Context Protocol server for calculatingMCP ServersMay 202524k153
  6. codefuturist avataremail-mcpIMAP/SMTP email MCP server — 47 tools, IMAP IDLE push, multi-account, AI triage.MCP ServersMay 202622k83