AI Task Management Assistant MCP Server for Claude Desktop and Claude Code
npm install @shin1ohno/sageAI Task Management Assistant - MCP Server for Claude Desktop, Claude Code, and Remote clients.


sage is an intelligent task management assistant that helps you:
- Analyze tasks - Automatically assign priorities (P0-P3), estimate time, and extract stakeholders
- Split complex tasks - Break down large tasks into actionable subtasks
- Smart routing - Route tasks to Apple Reminders (≤7 days) or Notion (8+ days)
- Calendar awareness - Find available time slots based on your schedule
sage is an MCP (Model Context Protocol) server that supports HTTP Transport for both local and remote connections.
``bash`Claude Code - one command setup
claude mcp add sage -- npx -y @shin1ohno/sage
For Claude Desktop, see Local MCP Setup Guide.
| Document | Description |
|----------|-------------|
| Local MCP Setup | Step-by-step guide for Claude Desktop/Code |
| Remote MCP Setup | Step-by-step guide for iOS/iPadOS/Web |
| Configuration Guide | Detailed configuration options |
| Architecture | System design and components |
| Troubleshooting | Common issues and solutions |
Analyze text input (emails, meeting notes, etc.) and get structured task information:
`
User: analyze_tasks with input: "田中さんからの依頼: 明日までに報告書を提出。来週の会議資料も準備してください。"
sage:
Task 1: 報告書を提出
- Priority: P0 (due tomorrow)
- Estimated: 50 minutes
- Stakeholder: 田中さん
Task 2: 会議資料を準備
- Priority: P2 (due next week)
- Estimated: 90 minutes
`
sage now includes persistent OAuth token storage for Remote MCP server:
- Automatic token persistence: OAuth refresh tokens, client registrations, and user sessions are automatically saved and restored across server restarts
- Encrypted storage: All tokens are encrypted using AES-256-GCM before being stored on disk
- Secure key management: Encryption keys can be provided via SAGE_ENCRYPTION_KEY environment variable or auto-generated at ~/.sage/oauth_encryption_key
- No re-authentication needed: Users no longer need to re-authenticate after server restarts
Storage Location: All OAuth data is stored in ~/.sage/ directory:oauth_refresh_tokens.enc
- - Encrypted refresh tokensoauth_clients.enc
- - Encrypted client registrationsoauth_sessions.enc
- - Encrypted user sessionsoauth_encryption_key
- - Encryption key (auto-generated if not provided)
Setup: To use a custom encryption key (recommended for production), set the environment variable:
`bash`
export SAGE_ENCRYPTION_KEY="your-secure-random-key-at-least-32-characters"
npx @shin1ohno/sage --remote
If no key is provided, sage will automatically generate one and store it securely with 600 file permissions.
sage now supports multiple calendar sources:
- macOS: Use EventKit, Google Calendar, or both simultaneously
- Linux/Windows: Use Google Calendar as your primary calendar source
- Automatic fallback: If one source fails, sage automatically uses the other
- Event deduplication: Intelligent merging prevents duplicate events
Supported Event Types: sage supports all Google Calendar event types:
- default - Standard meetings and eventsoutOfOffice
- - Vacation and out-of-office blocks with auto-declinefocusTime
- - Focus time blocks with Google Chat status integrationworkingLocation
- - Remote work, office, or custom location (all-day)birthday
- - Birthday and anniversary events (all-day, yearly recurring)fromGmail
- - Auto-generated events from Gmail (read-only, cannot be created)
Setup: See Configuration Guide for Google OAuth setup instructions.
When running sage as a remote MCP server (e.g., on a VPS or cloud instance), you can use Google Calendar by setting up a Web Application OAuth client:
1. Create OAuth Client in Google Cloud Console
1. Go to Google Cloud Console
2. Navigate to "APIs & Services" → "Credentials" → "Create Credentials" → "OAuth client ID"
3. Application type: Web application
4. Authorized redirect URIs:
- Local development: http://localhost:3000/oauth/callbackhttps://mcp.example.com/oauth/google/callback
- Production server:
2. Configure Environment Variables
`bash`
export GOOGLE_CLIENT_ID="your-client-id.apps.googleusercontent.com"
export GOOGLE_CLIENT_SECRET="your-client-secret"
export GOOGLE_REDIRECT_URI="https://mcp.example.com/oauth/google/callback"
3. Authenticate
From Claude, run the authenticate_google tool:
1. The tool returns an authorization URL
2. Open the URL in your browser
3. Complete Google authentication
4. The server receives the callback automatically
5. A success page is displayed - close the window and return to Claude
Troubleshooting
| Issue | Solution |
|-------|----------|
| redirect_uri_mismatch | Ensure the redirect URI in Google Cloud Console exactly matches GOOGLE_REDIRECT_URI |GOOGLE_CLIENT_ID
| Session expired | Complete authentication within 10 minutes |
| 503 from callback | Verify and GOOGLE_CLIENT_SECRET are set |
sage automatically detects your platform and uses the best available integration method for calendar and reminder access. This ensures you get the most seamless experience regardless of where you're using Claude.
How it Works
1. Platform Detection: When sage starts, it detects your platform from the MCP client information (iOS, iPadOS, macOS, desktop, or web)
2. Strategy Selection: Based on the detected platform, sage selects the optimal integration strategy for calendar and reminder operations
3. MCP Sampling Protocol: On iOS/iPadOS, sage uses the MCP Sampling protocol to instruct Claude to use native Calendar and Reminders APIs
4. Native APIs: On macOS, sage uses EventKit (calendar) and AppleScript (reminders) for direct system integration
5. Fallback: On web/Linux/Windows, sage uses Google Calendar API for calendar features
Platform Capabilities
| Platform | Calendar | Reminders | Integration Method |
|----------|----------|-----------|-------------------|
| iOS/iPadOS | Native Calendar + Google Calendar | Native Reminders | MCP Sampling |
| macOS | EventKit + Google Calendar | AppleScript | Native APIs |
| Web/Linux/Windows | Google Calendar only | Not available | Google API |
Key Benefits
- True multi-platform support: No need to run a Mac server for iOS/iPadOS access
- Multi-source calendar integration: Access both Google Calendar and Apple Calendar simultaneously on iOS/iPadOS
- Transparent UX: sage automatically selects the best method - you don't need to configure anything
- Graceful degradation: If native access is unavailable, sage falls back to API-based methods
Using get_platform_info
Query your current platform and available capabilities:
`
User: get_platform_info
sage:
{
"platform": "ipados",
"clientName": "Claude iOS",
"clientVersion": "1.0.0",
"supportsSampling": true,
"availableIntegrations": {
"calendar": {
"google": true,
"eventkit": false,
"native": true
},
"reminders": {
"applescript": false,
"native": true
}
}
}
`
Example: Listing Calendar Events on iOS
When you call list_calendar_events on iOS/iPadOS, sage uses Sampling to instruct Claude to:
1. Fetch Google Calendar events via the MCP tool
2. Access native iOS Calendar events via the native Calendar API
3. Merge both sets of events, removing duplicates by iCalUID
4. Return the combined results
This happens automatically - you just call the tool normally:
`
User: list_calendar_events with startDate: "2026-01-09", endDate: "2026-01-16"
sage: (automatically uses Sampling to access both calendars)
[Shows merged events from both Google Calendar and Apple Calendar]
`
Example: Creating Reminders on iOS
When you create a reminder on iOS/iPadOS, sage uses Sampling to access the native Reminders app:
`
User: set_reminder with title: "Review pull requests", dueDate: "2026-01-10T15:00:00"
sage: (uses Sampling to create reminder in native iOS Reminders app)
✓ Reminder created successfully
ID: reminder-123
`
Troubleshooting
Issue: "Sampling approval required" message appears
Solution:
- This is expected behavior on iOS/iPadOS when sage needs to access native Calendar or Reminders
- Claude will show a prompt asking for your approval to access these native features
- Approve the Sampling request to allow sage to access your calendar/reminders
- Once approved, the operation will complete automatically
Issue: Platform-adaptive integration not working
Checklist:
1. Verify your platform supports Sampling (run get_platform_info)authenticate_google
2. Check that you're using a recent version of Claude iOS/iPadOS app
3. Ensure you've granted Calendar/Reminders permissions in iOS Settings > Privacy
4. For Google Calendar: Make sure you've authenticated with
Issue: Calendar events not showing up
Possible causes:
1. Google Calendar not authenticated: Run authenticate_google tool
2. iOS Calendar permissions denied: Check Settings > Privacy > Calendars
3. Network connectivity issues: Verify you have internet access
Note: Platform-adaptive integration requires Claude clients that support MCP Sampling. This includes Claude iOS, Claude iPadOS, and recent versions of Claude Desktop. If your client doesn't support Sampling, sage will automatically fall back to API-based methods.
Tasks are automatically routed to the appropriate system:
| Deadline | Destination | Reason |
|----------|-------------|--------|
| ≤ 7 days | Apple Reminders | Short-term, actionable |
| 8+ days | Notion | Long-term planning |
| No deadline | Notion | Assumed infinite future, long-term planning |
| クライアント | サーバー | Apple Reminders | Calendar | Notion |
|--------------|----------|----------------|----------|--------|
| Claude Desktop/Code | macOS (直接) | AppleScript | EventKit + Google Calendar | MCP |
| Claude Desktop/Code | Linux/Windows (直接) | - | Google Calendar | MCP |
| Claude iOS/iPadOS | macOS (Remote MCP) | AppleScript | EventKit + Google Calendar | MCP |
| Claude iOS/iPadOS | Linux/Windows (Remote MCP) | - | Google Calendar | MCP |
| Claude Web | macOS (Remote MCP) | AppleScript | EventKit + Google Calendar | MCP |
| Claude Web | Linux/Windows (Remote MCP) | - | Google Calendar | MCP |
Apple Reminders requires macOS (AppleScript). Calendar support is available on all platforms via Google Calendar, with optional EventKit integration on macOS.
| Tool | Description |
|------|-------------|
| check_setup_status | Check if sage is configured |start_setup_wizard
| | Start interactive setup |save_config
| | Save configuration |update_config
| | Update configuration |
| Tool | Description |
|------|-------------|
| analyze_tasks | Analyze tasks for priority, time, stakeholders |set_reminder
| | Create a reminder |list_todos
| | List all tasks from all sources |update_task_status
| | Update task status |find_available_slots
| | Find free time in calendar |sync_to_notion
| | Sync task to Notion |
- Node.js >= 18.0.0
- Notion MCP server (任意、Notion 統合用)
- macOS: Full feature support (Apple Reminders, EventKit, Google Calendar)
- Linux/Windows: Calendar features via Google Calendar API (Apple Reminders not available)
注意: Apple Reminders 機能を使用する場合は macOS が必要です。Google Calendar のみを使用する場合は、Linux/Windows でも動作します。
`bashClone repository
git clone https://github.com/shin1ohno/sage.git
cd sage
MIT - see LICENSE for details.