osascript MCP Server
Provides programmatic control over the Apple application ecosystem, including native apps like Music, Calendar, and Safari via AppleScript and JXA.
Facilitates the execution of curl commands via shell scripts to interact with web APIs and remote servers.
Supports JavaScript for Automation (JXA), allowing the use of JavaScript to control macOS applications and system resources.
Allows for the automation of macOS system tasks, including file management via Finder and simulating user input through System Events.
Enables scripted interaction with the Safari browser to perform tasks such as retrieving the URL of the current active tab.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@osascript MCP ServerGet the URL and title of my active Safari tab"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
osascript MCP Server
macOS の osascript(AppleScript / JavaScript for Automation)を実行できる MCP サーバーです。
特徴
AppleScript サポート: macOS のネイティブ AppleScript を実行
JXA サポート: JavaScript for Automation(JXA)を実行
安全設計: ファイル削除コマンドのみブロック(その他は全て許可)
Desktop Extension 対応: .mcpb 形式でワンクリックインストール
Related MCP server: macOS GUI Control MCP
インストール
方法 1: MCPB ファイルから(推奨)
.mcpbファイルをダウンロードClaude Desktop にドラッグ&ドロップ
インストールを許可
方法 2: 手動設定
Claude Desktop の設定ファイル(~/Library/Application Support/Claude/claude_desktop_config.json)に追加:
{
"mcpServers": {
"osascript": {
"command": "node",
"args": ["/path/to/osascript-mcp/server/index.js"],
"env": {
"OSASCRIPT_TIMEOUT": "30000",
"OSASCRIPT_LOG_SCRIPTS": "true"
}
}
}
}使用方法
AppleScript の実行
tell application "Finder" to get name of every diskJXA(JavaScript)の実行
Application("System Events").processes().map(p => p.name())許可される操作
以下の操作は全て許可されています:
シェルコマンド(削除以外)
do shell script "ls -la ~/Desktop"
do shell script "whoami"
do shell script "curl -s https://api.github.com"
do shell script "cat ~/.zshrc"Finder 操作
tell application "Finder" to get name of every disk
tell application "Finder" to get every file of desktop
tell application "Finder" to open folder "Documents" of homeSystem Events
tell application "System Events" to get name of every process
tell application "System Events" to keystroke "hello"
tell application "System Events" to key code 36 -- Enterアプリケーション制御
tell application "Safari" to get URL of current tab of window 1
tell application "Music" to get name of current track
tell application "Calendar" to get events of calendar 1ブロックされる操作
以下の削除操作のみがブロックされます:
シェルでの削除
-- これらはブロックされます
do shell script "rm test.txt"
do shell script "rm -rf ~/test"
do shell script "rmdir testdir"Finder での削除
-- これらはブロックされます
tell application "Finder" to delete file "test.txt" of desktop
move file "test.txt" to trash
empty trash設定オプション
オプション | 説明 | デフォルト |
| スクリプト実行タイムアウト(ミリ秒) | 30000 |
| スクリプトをログ出力するか | true |
開発
ビルド
# 依存関係インストール
npm install
# ローカルテスト
npm start
# MCPB パッケージ作成
npm install -g @anthropic-ai/mcpb
mcpb validate manifest.json
mcpb pack .テスト
# 許可されるスクリプトのテスト
echo 'tell application "Finder" to get name of every disk' | node server/index.js
# サーバーの直接実行(デバッグ用)
node server/index.jsセキュリティ
このサーバーは「最小限のセキュリティ」設計を採用しています:
✅ 許可: シェルコマンド(
ls,curl,catなど)✅ 許可: System Events(
keystroke,key code)✅ 許可: 全アプリケーションの制御
❌ ブロック:
rm,delete,trashなどの削除操作
より厳格なセキュリティが必要な場合は、server/index.js の BLOCKED_PATTERNS を編集してください。
ライセンス
MIT
関連リンク
Available Tools
1 toolosascriptA
Execute AppleScript or JavaScript for Automation (JXA) on macOS. Full access to system automation including shell commands, app control, and System Events. Only file deletion commands are blocked for safety.
| Name | Required | Description | Default |
|---|---|---|---|
| script | Yes | The script to execute | |
| language | No | Script language: AppleScript (default) or JavaScript for Automation (JXA) | AppleScript |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively describes the tool's capabilities ('Full access to system automation'), constraints ('Only file deletion commands are blocked for safety'), and scope ('on macOS'), covering key behavioral traits like safety measures and system access without contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, followed by key capabilities and a safety constraint in just two sentences. Every sentence adds essential value without redundancy, making it highly efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (system automation with safety constraints), no annotations, and no output schema, the description provides good context on capabilities and limitations. However, it lacks details on error handling, output format, or execution environment, leaving some gaps for a high-risk tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters thoroughly. The description does not add specific meaning or examples beyond what the schema provides (e.g., script syntax or language details), meeting the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Execute AppleScript or JavaScript for Automation') and the resource ('on macOS'), with explicit scope ('Full access to system automation including shell commands, app control, and System Events'). It distinguishes the tool's capabilities comprehensively without siblings to differentiate from.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for macOS automation tasks but does not provide explicit guidance on when to use this tool versus alternatives (e.g., other scripting tools or direct system commands). No exclusions or prerequisites are mentioned beyond the safety block on file deletion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
- First observed
osascript
TDQS
With only one tool, there is no possibility of confusion or overlap between tools. The single tool has a clearly defined and distinct purpose: executing AppleScript or JavaScript for Automation on macOS.
A single tool inherently has perfect naming consistency, as there are no other tools to compare it against. The tool name 'osascript' is straightforward and matches the server's purpose.
A single tool is generally too few for most server purposes, as it limits functionality and can lead to dead ends in agent workflows. While the tool is powerful, the scope of macOS automation suggests more specialized tools (e.g., for specific apps or tasks) would be appropriate.
The tool surface is severely incomplete for macOS automation. It lacks coverage for common operations like querying system information, managing files (beyond the blocked deletion), controlling specific applications, or handling events, which are typical in automation domains.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Operate Linux, macOS and Windows from your LLM. Every action runs through an auditable allowlist.
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Automate 1,000+ services from any MCP-compatible AI agent: build Applets, run actions and queries.
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables LLM applications to interact with macOS through AppleScript.3317393MIT
- AlicenseAqualityDmaintenanceEnables comprehensive control over macOS GUI elements including mouse, keyboard, window management, and screen capture. It allows for automated system interactions and script execution while maintaining safety by blocking potentially destructive deletion commands.19345MIT
- AlicenseAqualityCmaintenanceEnables Large Language Models to automate macOS applications and execute AppleScript commands through natural language. It features built-in security protections including application allowlists and dangerous pattern detection to prevent unauthorized or risky system operations.2MIT
- AlicenseAqualityCmaintenanceEnables full control of macOS by executing AppleScript commands through an MCP server, allowing automation of tasks, application control, and system management.112315MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Akira-Papa/osascript-MCP-1'
If you have feedback or need assistance with the MCP directory API, please join our Discord server