Catalog
github/msgraph-sdk

github

msgraph-sdk

Integrate Microsoft Graph SDK into any project — .NET, TypeScript/JavaScript, or Python. Covers auth patterns (client credentials, OBO, managed identity), SDK setup, calling Graph APIs, batching, delta queries, change notifications, throttling, and permission scopes. Use when accessing Microsoft 365 data (users, mail, calendar, Teams, files, SharePoint) from any application type.

global
New~2.0k
v1.0Saved Jun 26, 2026

Microsoft Graph SDK

Use this skill when integrating Microsoft Graph into an application to access Microsoft 365 data and services.

Always ground implementation in the current Microsoft Graph SDK documentation and SDK version for the target language rather than relying on memory alone.

Determine the target language first

  1. Use the .NET workflow when the project contains .cs, .csproj, or .sln files, or when the user asks for C# guidance. Follow references/dotnet.md.
  2. Use the TypeScript / JavaScript workflow when the project contains package.json, .ts, or .js files, or when the user asks for Node.js / browser guidance. Follow references/typescript.md.
  3. Use the Python workflow when the project contains .py, pyproject.toml, or requirements.txt, or when the user asks for Python guidance. Follow references/python.md.
  4. If multiple languages are present, match the language of the files being edited or ask the user.

Always consult live documentation

Authentication — choose the right pattern

Selecting the wrong auth flow is the most common Graph integration mistake. Apply this decision tree before writing any auth code:

Scenario Flow to use
Background service / daemon with no user Client credentials (app-only)
Agent or API acting on behalf of a signed-in user On-Behalf-Of (OBO)
App running in Azure (Function, Container App, VM) Managed Identity (preferred over secrets)
CLI tool or local dev script Device code or interactive browser
Single-page app (browser only) Authorization code + PKCE
  • Never use client credentials when a user context is required — Graph enforces this at the permission level (application vs. delegated).
  • Prefer DefaultAzureCredential in Azure-hosted apps; it tries managed identity first and falls back gracefully for local dev.
  • Never hardcode secrets. Use environment variables, Azure Key Vault, or the Secret Manager.

Core SDK usage patterns

Building the client

Always construct GraphServiceClient once and reuse it (it manages token caching internally).

Pass a credential from the Azure Identity library — never build raw HTTP clients manually.

Making calls

  • Use the fluent builder API: client.Users[userId].Messages.GetAsync(...).
  • Always await async calls.
  • Specify $select to limit returned fields — Graph returns large default payloads.
  • Use $filter server-side rather than filtering returned collections in memory.
  • Use $expand to fetch related resources in a single call when relationships are small.

Pagination

Graph paginates collections. Never assume all items arrive in one response:

  • Check for an @odata.nextLink on the response.
  • Use the SDK's PageIterator helper (available in all three SDKs) to walk pages automatically.
  • Set $top to control page size (max varies by resource, typically 999).

Advanced patterns

Batch requests

Combine up to 20 independent Graph calls into a single HTTP request using the $batch endpoint. Use batching when:

  • Initializing data for a dashboard or agent that needs multiple resources upfront.
  • Reducing latency in high-call-count operations.

Batch responses arrive out of order — match them by the id field you assigned each request.

Delta queries

Use delta queries to sync changes incrementally instead of polling full collections:

  • First call: GET /users/delta returns all items + a @odata.deltaLink.
  • Subsequent calls: use the deltaLink to receive only what changed since the last sync.
  • Supported on: users, groups, messages, calendar events, Teams channels, and more.
  • Store the deltaLink durably (database, blob) between sync runs.

Change notifications (webhooks)

Subscribe to resource changes with POST /subscriptions:

  • Graph delivers change events to your HTTPS notification URL.
  • Subscriptions expire — renew them before expirationDateTime (max varies by resource; typically 1–3 days for mail/calendar, up to 4230 minutes for users/groups).
  • Validate the subscription handshake: Graph sends a validationToken query parameter on creation — echo it back as plain text with HTTP 200.
  • Use lifecycle notifications (notificationUrl + lifecycleNotificationUrl) to handle missed events and reauthorization.
  • For high-volume scenarios prefer change notifications with resource data (requires additional encryption setup).

Throttling

Graph throttles aggressively. Always handle HTTP 429:

  • Read the Retry-After header — it specifies exact seconds to wait, not a fixed backoff.
  • The SDK's built-in retry middleware handles 429 automatically when configured; enable it explicitly.
  • Avoid fan-out patterns that hit Graph with hundreds of parallel requests; use batching or queuing instead.

Permissions

Get permissions right before writing auth code — wrong scopes result in 403 errors that are hard to debug later.

  • Application permissions run without a user (daemon / service). Require admin consent.
  • Delegated permissions run in the context of a signed-in user. Some require admin consent.
  • Request the minimum permissions needed. Graph's permission reference lists least-privilege options for every operation.
  • Use the Graph Explorer to test which permissions a call actually requires before coding.
  • In Azure app registrations: grant API permissions → Microsoft Graph → select type (Application or Delegated) → grant admin consent where required.

Common Graph resources — quick reference

Goal Resource path
Get signed-in user's profile GET /me
List user's mailbox messages GET /me/messages
Send an email POST /me/sendMail
List calendar events GET /me/events
Get user's OneDrive root GET /me/drive/root/children
List Teams the user is in GET /me/joinedTeams
Post a Teams channel message POST /teams/{id}/channels/{id}/messages
List SharePoint site lists GET /sites/{siteId}/lists
Search across M365 POST /search/query
List all users in tenant (app-only) GET /users
Get group members GET /groups/{id}/members

In similar fashion, use the SDK's fluent API to navigate to these resources in code.

Workflow

  1. Determine the target language and read the matching reference file.
  2. Identify the auth scenario and choose the correct flow from the table above.
  3. Fetch current SDK docs and Graph Explorer examples before making implementation choices.
  4. Apply least-privilege permissions — confirm in the Graph permissions reference.
  5. Implement pagination from the start — don't assume single-page responses.
  6. Enable retry middleware for throttling from day one.
  7. For syncing scenarios, prefer delta queries over polling.
  8. Use the language-specific package names, auth provider setup, and code patterns from the chosen reference file.

Completion criteria

  • Auth flow matches the scenario (not defaulting to client credentials for user-context calls).
  • GraphServiceClient is constructed once and reused.
  • All collection reads handle pagination.
  • Throttling (429) is handled via retry middleware or explicit Retry-After logic.
  • Permissions are scoped to the minimum required.
  • No secrets or credentials are hardcoded.
  • Code matches current SDK version patterns for the selected language.
Files4
4 files · 23.3 KB

Select a file to preview

Overall Score

82/100

Grade

B

Good

Safety

82

Quality

85

Clarity

84

Completeness

76

Summary

Microsoft Graph SDK integration skill that teaches developers to authenticate and interact with Microsoft 365 data across .NET, TypeScript/JavaScript, and Python. The skill provides language-specific setup instructions, auth flow selection guidance, pagination patterns, and advanced features like batching and delta queries. The repeated SEC-020 findings all relate to references within environment variable configuration (`.env` usage in code examples), which is appropriate documentation of expected practices for managing Azure credentials.

Static Analysis Findings

1 finding

Patterns detected by deterministic static analysis before AI scoring. Hover over any finding code for detailed information and remediation guidance.

Credential Exposure
SEC-020Direct .env File Access10x in 1 file

Direct .env file access

references/typescript.md.env10x

Detected Capabilities

http request to Microsoft Graphenvironment variable readingcredential/token managementfile documentation readingcode example generation

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

graph api integrationmicrosoft 365 authteams api accesssharepoint data syncoffice 365 email readmanaged identity setupazure credential flow

Risk Signals

INFO

References to `.env` file in code examples (environment variable patterns)

references/typescript.md, references/dotnet.md, references/python.md
WARNING

Use of environment variables (AZURE_TENANT_ID, AZURE_CLIENT_ID, AZURE_CLIENT_SECRET) for credential management

references/typescript.md, references/dotnet.md, references/python.md
INFO

Guidance explicitly directs users NOT to hardcode secrets and to use .env/environment variables instead

SKILL.md (Authentication section) and all reference files

Referenced Domains

External domains referenced in skill content, detected by static analysis.

developer.microsoft.comgithub.comgraph.microsoft.comlearn.microsoft.comlocalhost

Use Cases

  • .NET app accessing Microsoft 365 users and calendar events
  • TypeScript/Node.js service integrating with Teams or SharePoint
  • Python daemon syncing OneDrive files using Graph
  • CLI tool authenticating with device code to read user mailbox
  • ASP.NET Core API using on-behalf-of flow to query Teams data on behalf of signed-in users
  • Background service using managed identity to list all organization users

Quality Notes

  • Strong security guidance: explicitly recommends against hardcoding secrets and prefers managed identity in Azure environments
  • Comprehensive auth decision tree matches scenario to correct OAuth flow (client credentials, OBO, managed identity, device code, PKCE)
  • Language-specific reference files are well-organized with authoritative source links and version guidance
  • Clear pagination guidance prevents common mistake of assuming single-page responses
  • Batch requests and delta queries documented for performance-sensitive scenarios
  • Throttling (HTTP 429) handling explained with explicit Retry-After header guidance
  • Practical code examples in all three languages (TypeScript, Python, .NET) with realistic error patterns
  • Permission scoping guidance helps prevent 403 errors by matching least-privilege to operation
  • Strong workflow structure (step 1: determine language, step 2: choose auth, etc.) reduces decision paralysis
  • Completion criteria explicitly list no-hardcoded-secrets requirement
Model: claude-haiku-4-5-20251001Analyzed: Jun 26, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Add github/msgraph-sdk to your library

Command Palette

Search for a command to run...