Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Managing Calendar

ASecurity

Manage Google Calendar events via MCP server. Use when scheduling meetings, checking availability, listing events, or processing meeting requests from emails. NOT when managing Outlook calendars (different API).

12 stars
0 votes
0 copies
1 views
Added 9/22/2026
ai-agentspythongobashgitapi

Works with

cliapimcp

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add AbdullahMalik17/Digital-FTE --skill managing-calendar --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Managing Calendar?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Managing Calendar
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/abdullahmalik17-managing-calendar/badge)](https://www.skillsdirectory.com/skills/abdullahmalik17-managing-calendar)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: managing-calendar
description: |
  Manage Google Calendar events via MCP server.
  Use when scheduling meetings, checking availability, listing events,
  or processing meeting requests from emails.
  NOT when managing Outlook calendars (different API).
---

# Google Calendar MCP Skill

FastMCP server for Google Calendar management.

## Quick Start

```bash
# Start MCP server
python src/mcp_servers/google_calendar_server.py
```

## MCP Tools

1. `list_events(calendar_id, max_results, time_min, time_max)` - List upcoming events
2. `create_event(summary, start_time, end_time, description, location, attendees)` - Create new event
3. `update_event(event_id, summary, description, location)` - Modify existing event
4. `delete_event(event_id)` - Cancel event

## Production Gotchas

### Timezone Handling
All times are stored in UTC by default. Client must convert:

```python
# Server always uses UTC
'start': {
    'dateTime': start_time,
    'timeZone': 'UTC',  # Always UTC internally
}

# Convert for user display
from datetime import timezone
local_time = utc_time.astimezone(timezone.utc)
```

### ISO Format Required
Time parameters MUST be ISO 8601 format:

```python
# ✓ CORRECT
create_event(start_time="2026-01-30T10:00:00")

# ✗ WRONG - Natural language
create_event(start_time="tomorrow 10am")

# ✗ WRONG - Missing T separator
create_event(start_time="2026-01-30 10:00:00")
```

### Calendar ID Conventions
- `'primary'` - User's main calendar (default)
- Email address - Shared calendar access
- Calendar ID from Google - For secondary calendars

### Attendees Are Optional But Important
Omitting attendees creates a private event:

```python
# Private event (no notifications)
create_event(summary="Focus time", start_time=..., end_time=...)

# Meeting with notifications
create_event(
    summary="Team sync",
    start_time=...,
    end_time=...,
    attendees=["alice@example.com", "bob@example.com"]
)
```

### Separate Token File
Calendar uses different OAuth token than Gmail:
- `token_calendar.json` - Calendar access
- `token.json` / `token_email.json` - Gmail access

### Event ID Required for Updates
You must first retrieve the event ID before updating:

```python
# ✗ FAILS - No ID
update_event(summary="New title")

# ✓ WORKS - Get ID from list_events first
events = list_events()
event_id = events[0]['id']
update_event(event_id=event_id, summary="New title")
```

## Configuration

Required in `config/`:
- `credentials.json` - Google OAuth credentials
- `token_calendar.json` - Calendar OAuth token

OAuth Scopes:
```python
SCOPES = ['https://www.googleapis.com/auth/calendar']
```

## Setup

### 1. Enable Google Calendar API

1. Go to [Google Cloud Console](https://console.cloud.google.com/)
2. Enable "Google Calendar API"
3. Create OAuth credentials (Desktop app)
4. Download as `config/credentials.json`

### 2. First Run

```bash
python src/mcp_servers/google_calendar_server.py
```

This opens a browser for OAuth consent. Token saves to `token_calendar.json`.

## Rate Limits

Google Calendar API limits:
- 1,000,000 queries per day
- 500 queries per 100 seconds per user

Not typically a concern for personal use.

## Audit Logging

All operations logged via `utils/audit_logger.py`:
- Domain: `AuditDomain.PERSONAL`
- Actions: `calendar.list_events`, `calendar.create_event`, etc.

## Verification

Run: `python scripts/verify.py`

## Related Skills

- `watching-gmail` - Detect meeting requests in emails
- `digital-fte-orchestrator` - Process calendar-related tasks

Attribution

AbdullahMalik17AbdullahMalik17
View sourceMore from AbdullahMalik17 →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →