Source profileQuality 91/100

WYRE-AI/msp-claude-plugins/msp-claude-plugins/m365/m365/skills/calendar/SKILL.md

Microsoft 365 Calendar

Exchange Online calendars through Microsoft Graph: event retrieval and date-range queries, free/busy and availability lookup, meeting and Teams-meeting creation, room and equipment resource bookings, calendar permissions, and the Graph scopes and error causes involved.

Source repository stars
42
Declared platforms
0
Static risk flags
0
Last source update
2026-08-28
Source checked
2026-08-28

Decision brief

What it does: where it fits

Exchange Online calendars through Microsoft Graph: event retrieval and date-range queries, free/busy and availability lookup, meeting and Teams-meeting creation, room and equipment resource bookings, calendar permissions, and the Graph scopes and error causes involved.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/m365/m365/skills/calendar"
    Safe inspection promptEditorial

    Inspect the Agent Skill "Microsoft 365 Calendar" from https://github.com/WYRE-AI/msp-claude-plugins/blob/5005f73ba2f52cd299f58aa6bb79f4e70ae87103/msp-claude-plugins/m365/m365/skills/calendar/SKILL.md at commit 5005f73ba2f52cd299f58aa6bb79f4e70ae87103. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Anti-triggers

      "Schedule a meeting" routes three different ways depending on who picks the time. Here, you pick it and write the event straight into a mailbox:

      The customer picks the slot from a booking link — a self-serviceDispatching a technician to a job — an onsite visit or serviceThe same calendar work across many tenants — use the cipp
    2. 02

      Graph API Patterns

      Use calendarView (not /events) for date-range queries — it correctly expands recurring events.

      Use calendarView (not /events) for date-range queries — it correctly expands recurring events.Get availability for a set of users:availabilityView is a string where each character represents a 30-min slot: 0=free, 1=tentative, 2=busy, 3=out-of-office, 4=working elsewhere.
    3. 03

      Get a User's Calendar Events

      Review the “Get a User's Calendar Events” section in the pinned source before continuing.

      Review and apply the “Get a User's Calendar Events” source section.
    4. 04

      Get Events in a Date Range

      Use calendarView (not /events) for date-range queries — it correctly expands recurring events.

      Use calendarView (not /events) for date-range queries — it correctly expands recurring events.
    5. 05

      Check Free/Busy Time

      Get availability for a set of users:

      Get availability for a set of users:availabilityView is a string where each character represents a 30-min slot: 0=free, 1=tentative, 2=busy, 3=out-of-office, 4=working elsewhere.

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score91/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars42SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    WYRE-AI/msp-claude-plugins
    Skill path
    msp-claude-plugins/m365/m365/skills/calendar/SKILL.md
    Commit
    5005f73ba2f52cd299f58aa6bb79f4e70ae87103
    License
    Apache-2.0
    Collected
    2026-08-28
    Default branch
    main
    View the original SKILL.md

    Microsoft 365 Calendar Management

    Overview

    Microsoft 365 calendar is powered by Exchange Online and surfaced through Microsoft Graph. For MSPs, calendar tasks include troubleshooting scheduling issues, creating meetings on behalf of users, managing room resources, and checking user availability during support incidents.

    Anti-triggers

    "Schedule a meeting" routes three different ways depending on who picks the time. Here, you pick it and write the event straight into a mailbox:

    • The customer picks the slot from a booking link — a self-service scheduling request tied to a PSA ticket is what TimeZest is for; use the timezest plugin (timezest-scheduling). Writing the event directly here bypasses the PSA workflow and the customer's choice.
    • Dispatching a technician to a job — an onsite visit or service window is a PSA service call, which carries the billing and dispatch record a calendar event does not; use the autotask plugin (autotask-service-calls) or the equivalent PSA plugin.
    • The same calendar work across many tenants — use the cipp plugin.

    Note also that a TimeZest "resource" is a technician or team, while a resource here is a room or equipment mailbox — they are not the same object.

    Graph API Patterns

    Get a User's Calendar Events

    GET /v1.0/users/{userId}/calendar/events?$select=id,subject,start,end,organizer,attendees,isOnlineMeeting,location&$orderby=start/dateTime&$top=10
    

    Get Events in a Date Range

    GET /v1.0/users/{userId}/calendarView?startDateTime=2024-01-15T00:00:00Z&endDateTime=2024-01-22T00:00:00Z&$select=subject,start,end,organizer,attendees,isOnlineMeeting
    

    Use calendarView (not /events) for date-range queries — it correctly expands recurring events.

    Check Free/Busy Time

    Get availability for a set of users:

    POST /v1.0/users/{userId}/calendar/getSchedule
    Content-Type: application/json
    
    {
      "schedules": ["[email protected]", "[email protected]"],
      "startTime": { "dateTime": "2024-01-20T08:00:00", "timeZone": "Eastern Standard Time" },
      "endTime":   { "dateTime": "2024-01-20T17:00:00", "timeZone": "Eastern Standard Time" },
      "availabilityViewInterval": 30
    }
    

    Response:

    {
      "value": [
        {
          "scheduleId": "[email protected]",
          "availabilityView": "000022220000",
          "scheduleItems": [
            {
              "status": "busy",
              "start": { "dateTime": "2024-01-20T10:00:00" },
              "end":   { "dateTime": "2024-01-20T11:00:00" }
            }
          ]
        }
      ]
    }
    

    availabilityView is a string where each character represents a 30-min slot: 0=free, 1=tentative, 2=busy, 3=out-of-office, 4=working elsewhere.

    Create a Meeting (with Teams Link)

    POST /v1.0/users/{organizerId}/events
    Content-Type: application/json
    
    {
      "subject": "IT Onboarding — Jane Smith",
      "start": { "dateTime": "2024-01-20T10:00:00", "timeZone": "Eastern Standard Time" },
      "end":   { "dateTime": "2024-01-20T11:00:00", "timeZone": "Eastern Standard Time" },
      "attendees": [
        { "emailAddress": { "address": "[email protected]" }, "type": "required" },
        { "emailAddress": { "address": "[email protected]" }, "type": "required" }
      ],
      "isOnlineMeeting": true,
      "onlineMeetingProvider": "teamsForBusiness",
      "body": { "contentType": "HTML", "content": "<p>IT onboarding session agenda...</p>" }
    }
    

    Get Room Resources

    GET /v1.0/places/microsoft.graph.room?$select=id,displayName,emailAddress,capacity,building,floorNumber
    

    Check Room Availability

    Use getSchedule with the room's email address as a schedule ID (same as users above).

    Cancel an Event

    POST /v1.0/users/{userId}/events/{eventId}/cancel
    Content-Type: application/json
    
    {
      "comment": "Meeting has been rescheduled. New invite to follow."
    }
    

    Update an Event

    PATCH /v1.0/users/{userId}/events/{eventId}
    Content-Type: application/json
    
    {
      "subject": "Updated: IT Onboarding — Jane Smith",
      "start": { "dateTime": "2024-01-21T14:00:00", "timeZone": "Eastern Standard Time" },
      "end":   { "dateTime": "2024-01-21T15:00:00", "timeZone": "Eastern Standard Time" }
    }
    

    Common MSP Workflows

    Find Available Meeting Time

    1. Get list of required attendees
    2. Call getSchedule for all attendees + desired room
    3. Parse availabilityView strings to find overlapping free slots
    4. Return top 3 options within the user's working hours

    Out-of-Office and Calendar Coordination

    When setting OOO (via mailbox settings), also check if the user has events during their absence:

    1. Get events in the OOO date range
    2. List events with other attendees — these may need cancellation or reassignment
    3. Cancel/update events as needed
    4. Set OOO via mailbox settings

    Recurring Event Management

    Recurring events are expanded in calendarView results. Each instance has:

    • seriesMasterId — the master recurring event ID
    • type: "occurrence" — individual instance
    • type: "seriesMaster" — the template

    To update all future instances: PATCH the series master. To update only one instance: PATCH the specific occurrence.

    Error Handling

    ErrorCauseResolution
    ErrorCalendarNotFoundUser has no calendar (no Exchange license)Assign Exchange license
    ErrorItemNotFoundEvent ID doesn't existMay have been deleted
    ErrorAccessDeniedNo Calendars.Read permissionCheck app permissions
    Organizer_InvalidTrying to create event as non-organizerUse organizer's userId

    Permissions Required

    TaskMicrosoft Graph Permission
    Read eventsCalendars.Read
    Read other users' calendarsCalendars.Read (admin consent)
    Create/update/delete eventsCalendars.ReadWrite
    Check free/busyCalendars.Read
    Room directoryPlace.Read.All

    Related Skills

    Frequently asked questions

    What to verify before installation and use

    What does the Microsoft 365 Calendar source document cover?

    Exchange Online calendars through Microsoft Graph: event retrieval and date-range queries, free/busy and availability lookup, meeting and Teams-meeting creation, room and equipment resource bookings, calendar permissions, and the Graph scopes and error causes involved.

    How do I install Microsoft 365 Calendar?

    The source record exposes this install command: npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/m365/m365/skills/calendar". Inspect the command and pinned source before running it.

    Alternatives

    Compare before choosing

    Computed 10045,960

    coreyhaines31/marketingskills

    ab-testing

    When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

    Computed 10029,236

    garrytan/gbrain

    bulk-ingestion

    End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.

    Computed 10025,136

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 1005,277

    dotnet/skills

    migrate-vstest-to-mtp

    Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing