We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/FradSer/mcp-server-apple-events'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# macOS权限检查和申请脚本
# 用于Apple Events MCP Server
echo "🔐 检查 Apple Events MCP Server 权限..."
# 检查EventKit权限
echo "📅 检查 EventKit (提醒) 权限..."
EVENTKIT_CHECK=$(./bin/EventKitCLI --action read --limit 1 2>&1)
if [[ $? -eq 0 ]]; then
echo "✅ EventKit 权限已授予"
else
echo "❌ EventKit 权限被拒绝或需要授权"
echo "请在系统设置 > 隐私与安全性 > 提醒事项 中授予权限"
echo "授权后请重新运行此脚本"
exit 1
fi
# 检查AppleScript权限
echo "🤖 检查 AppleScript 自动化权限..."
APPLESCRIPT_CHECK=$(osascript -e 'tell application "Reminders" to get the name of every list' 2>&1)
if [[ $? -eq 0 ]]; then
echo "✅ AppleScript 自动化权限已授予"
echo "可用的提醒列表: $APPLESCRIPT_CHECK"
else
echo "❌ AppleScript 自动化权限被拒绝或需要授权"
echo "请在系统设置 > 隐私与安全性 > 自动化 中授予权限"
echo "授权后请重新运行此脚本"
exit 1
fi
echo ""
echo "🎉 所有权限检查通过!"
echo "📱 Apple Events MCP Server 现在可以正常运行"
echo ""
echo "启动命令: npx $HOME/.mcp-server/mcp-server-apple-events"