macOS Calendar integration
## Apple Calendar MCP Server: Native Calendar Integration The **Apple Calendar MCP Server** integrates macOS and iOS Calendar directly into Google Antigravity, enabling AI assistants to create events, manage calendars, and access scheduling data programmatically. This integration brings native Apple Calendar management to your development workflow for seamless productivity automation. ### Why Apple Calendar MCP? - **Native Integration**: Direct access to macOS Calendar app without third-party dependencies - **iCloud Sync**: Events sync automatically across all Apple devices via iCloud - **Multiple Calendars**: Manage personal, work, and shared calendars in one interface - **Event Details**: Full access to attendees, locations, notes, alerts, and recurrence rules - **Natural Input**: Create events from natural language descriptions ### Key Features #### 1. Event Creation ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a team meeting for tomorrow at 2pm for 1 hour in Conference Room A" }], tools=[{ "name": "apple_calendar_create", "description": "Create calendar events" }] ) ``` #### 2. Calendar Queries ```python # Query calendar events response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show me all meetings scheduled for next week with their attendees" }], tools=[{"name": "apple_calendar_query", "description": "Query events"}] ) ``` #### 3. Event Management ```python # Update existing events response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Move tomorrow standup meeting to 10am and add a Zoom link" }], tools=[{"name": "apple_calendar_update", "description": "Update events"}] ) ``` #### 4. Calendar Management ```python # Manage calendars response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "List all my calendars and create a new one for project deadlines" }], tools=[{"name": "apple_calendar_manage", "description": "Manage calendars"}] ) ``` ### Configuration ```json { "mcpServers": { "apple-calendar": { "command": "npx", "args": ["-y", "@anthropic/mcp-apple-calendar"], "env": {} } } } ``` ### Use Cases **Scheduling Automation**: Automatically create events from emails, tasks, or project management tools. **Meeting Management**: Query and organize meetings with attendee and resource tracking. **Deadline Tracking**: Create reminders and events for project milestones and deadlines. **Daily Planning**: Generate daily schedules and time blocking from task lists. The Apple Calendar MCP Server brings native calendar integration directly into your development workflow, enabling seamless scheduling automation on Apple devices.
{
"mcpServers": {
"apple-calendar": {
"mcpServers": {
"apple-calendar": {
"args": [
"-y",
"apple-calendar-mcp"
],
"command": "npx"
}
}
}
}
}