gcal-api-research
Expert research tool for Google Calendar API implementations. PROACTIVELY use when (1) reviewing PRs adding calendar features, (2) planning new event/attendee/recurring event functionality, (3) investigating calendar API issues, (4) validating timezone handling or batch operations. Specializes in recurring events, timezone conversions, multi-calendar support, and edge case identification.
Install
mkdir -p .claude/skills/gcal-api-research && curl -L -o skill.zip "https://mcp.directory/api/skills/download/4884" && unzip -o skill.zip -d .claude/skills/gcal-api-research && rm skill.zipInstalls to .claude/skills/gcal-api-research
About this skill
Google Calendar API Research
Quick Start
What are you doing?
- 📝 Reviewing a PR → Read
references/research-checklist.mdfirst - 🚀 Planning a feature → Start with Step 1 below, then consult relevant references
- 🐛 Investigating an issue → Check
references/edge-cases.mdfor known pitfalls - ✅ Validating an approach → Read
references/api-patterns.mdfor best practices
Then follow the detailed workflow below.
Overview
This skill provides a structured approach to researching Google Calendar API implementations, identifying best practices, and uncovering potential edge cases. Use this skill to ensure implementations leverage Google Calendar APIs appropriately with good defaults while supporting complex use cases.
When to Use This Skill
Use this skill when:
- Reviewing PRs that add new Google Calendar functionality (e.g., "feat: add respond-to-event tool")
- Planning new features before implementation begins
- Investigating issues with existing Google Calendar integrations
- Validating implementation approaches against Google Calendar API best practices
- Researching edge cases for specific calendar operations
This skill is particularly valuable for features involving:
- Recurring event handling
- Timezone conversions
- Batch operations across multiple calendars
- Event conflict detection
- Attendee management
- Conference data integration
Research Workflow
Step 1: Understand the Feature
First, identify what the implementation does or plans to do:
- For PR Reviews: Read the PR description and examine the code changes
- For Feature Planning: Clarify the requirements and desired functionality
- For Issues: Understand the reported problem and expected behavior
Key Questions:
- What Google Calendar API operations are involved?
- What user scenarios does this support?
- What are the critical requirements (performance, reliability, edge cases)?
Step 2: Consult Reference Materials
Load relevant reference files based on the feature area. The skill includes three comprehensive references:
references/research-checklist.md
- Use for structured PR review workflow
- Covers API method selection, recurring events, timezones, batch operations, multi-calendar support, error handling, response structure, and testing
- Provides specific "Questions to Ask" for each area
- Includes "Research Steps" for finding additional information
references/api-patterns.md
- Use for understanding common implementation patterns
- Covers event querying, modification patterns, field masks, batch requests, conflict detection, pagination, timezone handling, error handling, and performance optimization
- Provides code examples and "when to use" guidance
- Documents authentication and authorization patterns
references/edge-cases.md
- Use for identifying potential pitfalls and gotchas
- Comprehensive catalog of recurring event edge cases, all-day event issues, attendee edge cases, conference data pitfalls, permission issues, batch request complications, and more
- Real-world scenarios and common mistakes
- Includes "Best Practice" recommendations for each edge case
How to Use References:
# Read the most relevant reference first
Read references/research-checklist.md
# Then read specific sections of other references as needed
Read references/api-patterns.md (focus on relevant sections)
Read references/edge-cases.md (scan for applicable edge cases)
Avoid loading all references into context at once. Load them progressively as needed based on the specific feature area.
Step 3: Research Official Documentation
Use WebFetch to access Google's official Calendar API documentation:
Primary Sources:
- API Reference:
https://developers.google.com/calendar/api/v3/reference - Guides:
https://developers.google.com/calendar/api/guides/overview - Best Practices: Search for specific topics like "google calendar api recurring events"
Research Pattern:
# Fetch official documentation for specific feature
WebFetch(
url: "https://developers.google.com/calendar/api/v3/reference/events/insert",
prompt: "What are the parameters and best practices for creating calendar events? Focus on required fields, optional parameters, and any notes about recurring events or timezones."
)
Focus Areas:
- Required vs optional parameters
- Field formats and validation rules
- Return types and error codes
- Usage quotas and rate limits
- Deprecation notices
Step 4: Search for Community Issues
Use WebSearch to find real-world issues others have encountered:
Search Patterns:
- Stack Overflow Issues:
WebSearch(
query: "google calendar api recurring event instances site:stackoverflow.com"
)
- GitHub Issues:
WebSearch(
query: "google calendar api timezone handling issues site:github.com"
)
- General Problem Reports:
WebSearch(
query: "google calendar api [specific operation] problems edge cases"
)
Look For:
- Common error messages and their solutions
- Unexpected behaviors reported by developers
- Workarounds for API limitations
- Performance issues and optimization strategies
Example Searches:
- "google calendar api batch request partial failure"
- "google calendar api recurring event exception orphaned"
- "google calendar api all-day event timezone conversion"
- "google calendar api attendee response status not updating"
Step 5: Validate Implementation
Synthesize findings to validate the implementation:
For PR Reviews:
- API Method Selection: Is the correct API method being used? (See research-checklist.md → API Method Selection)
- Edge Cases: Are known edge cases handled? (See edge-cases.md for relevant category)
- Best Practices: Does implementation follow recommended patterns? (See api-patterns.md for relevant pattern)
- Error Handling: Are errors handled appropriately?
- Testing: Can the feature be tested reliably?
For Feature Planning:
- Feasibility: Does the Google Calendar API support the desired functionality?
- Approach: What's the best API method/pattern for this use case?
- Complexity: What edge cases need to be considered?
- Defaults: What are good defaults that still allow advanced usage?
For Issue Investigation:
- Known Issue: Is this a documented edge case? (Check edge-cases.md)
- API Behavior: Is the API behaving as documented? (Check official docs)
- Pattern Problem: Is there a better implementation pattern? (Check api-patterns.md)
- Community Solutions: Have others solved this? (Check WebSearch results)
Step 6: Provide Actionable Findings
BE EXTREMELY CONCISE. Senior engineers with limited time.
MAX 500 words. Focus on critical issues only.
For PR Reviews:
**Approach:** [correct API method? yes/no]
**Critical Edge Cases:** [3-5 max, file:line refs]
**Fixes:** [specific changes needed, file:line]
**Tests:** [3-5 specific test cases needed]
For Feature Planning:
**API Method:** [which method + why]
**Critical Edges:** [3-5 pitfalls to handle]
**Complexity:** [low/med/high + 1 reason]
DO NOT:
- Write long explanations
- Create documentation files
- Explain Google Calendar basics
- Provide code examples (unless critical fix)
- List obvious edge cases
Critical Focus Areas
Recurring Events
Recurring events are the most complex aspect of Google Calendar API. Always check:
- Instance ID format: Must be
{recurringEventId}_{instanceTime}with time in UTC - Modification scope: thisEventOnly, thisAndFollowing, all
- Exceptions: Instances with
recurringEventIdfield have limitations - Timezone changes: Can cause unexpected shifts in recurring patterns
Primary Reference: edge-cases.md → "Recurring Events Edge Cases"
Timezone Handling
Timezone issues are common and subtle. Always verify:
- Explicit specification: Are timezones specified explicitly rather than relying on defaults?
- All-day vs timed: All-day events use
date, timed events usedateTime+timeZone - Conversions: Is conversion between all-day and timed events handled correctly?
- Calendar timezone: Is calendar's default timezone being retrieved when needed?
Primary Reference: api-patterns.md → "Timezone Handling Patterns" and edge-cases.md → "All-Day Event Edge Cases"
Batch Operations
Batch operations improve performance but have special handling requirements. Check:
- Batch size limits: Max 50 requests per batch
- Partial failures: Each request can succeed/fail independently
- Error handling: Must check status of each response individually
- When to batch: Independent operations benefit from batching
Primary Reference: api-patterns.md → "Batch Request Patterns" and edge-cases.md → "Batch Request Edge Cases"
Multi-Calendar Support
Operations across multiple calendars require special consideration:
- Calendar access: Different calendars may have different permissions
- Aggregation: Results from multiple calendars need proper merging
- Performance: Consider using batch requests or freebusy queries
- Calendar discovery: calendarList.list() vs direct calendar access
Primary Reference: research-checklist.md → "Multi-Calendar Operations" and edge-cases.md → "Multi-Calendar Edge Cases"
Research Tips
Effective Web Searches
Be Specific:
- ❌ "google calendar api issues"
- ✅ "google calendar api recurring event instance ID format"
Use Site Filters:
site:stackoverflow.com- For Q&A and troubleshootingsite:github.com- For library-specific issues and code examplessite:developers.google.com- For official documentation only
Search for Errors:
- Include error codes: "google calendar api 409 conflict"
- Include error messages: "google calendar api 'invalid event id'"
Find Recent Issues:
- Add ye
Content truncated.
More by nspady
View all skills by nspady →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversEmpower your CLI agents with NotebookLM—connect AI tools for citation-backed answers from your docs, grounded in your ow
Effortlessly manage Google Cloud with this user-friendly multi cloud management platform—simplify operations, automate t
Supercharge AI tools with Kagi MCP: fast google web search API, powerful ai summarizer, and seamless ai summary tool int
Research any topic fast with Web Research – powerful web scraping tools and advanced Google dorking for results you can
Sync Trello with Google Calendar easily. Fast, automated Trello workflows, card management & seamless Google Calendar in
Adspirer — streamline campaign planning, research, and cross-platform ad creation with powerful tools and Google Ads Key
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.