
Microsoft Graph SDK
OfficialFreeIntegrate Microsoft Graph into your applications seamlessly.
Free · Opens the source repo
What Microsoft Graph SDK does
The Microsoft Graph SDK skill provides developers with a streamlined approach to integrating Microsoft Graph into their applications, enabling access to Microsoft 365 data and services. This skill supports multiple programming languages, including .NET, TypeScript/JavaScript, and Python, making it versatile for various project environments. By following the structured workflows provided, users can efficiently set up authentication, make API calls, and handle common scenarios like pagination and batching.
One of the key features of this skill is its emphasis on using the latest Microsoft Graph SDK documentation as a reference. Developers are encouraged to consult live documentation to ensure they are working with the most current information and best practices. This includes understanding different authentication patterns, such as client credentials for background services or On-Behalf-Of (OBO) for user-context applications, which are critical for proper integration.
The skill also addresses advanced usage patterns, such as delta queries for incremental data synchronization and change notifications for real-time updates. It provides clear guidelines on handling throttling, ensuring that applications can gracefully manage API rate limits. By implementing these strategies, developers can create robust applications that interact with Microsoft 365 data without running into common pitfalls.
Overall, this skill is designed for developers looking to leverage Microsoft Graph in their applications, whether they are building new features or integrating existing services. Its comprehensive approach ensures that users can navigate the complexities of Microsoft Graph with confidence and efficiency.
When to use it
Use this skill when you need to access Microsoft 365 data from applications built in .NET, TypeScript/JavaScript, or Python.
When not to use it
This skill may not be suitable for projects that do not require Microsoft Graph integration or for languages not supported by the SDK.
What you can build with it
Integrating Microsoft Teams Data
Use this skill to access and manage Teams channels, messages, and user information within your application.
Syncing User Data
Implement delta queries to keep user data in sync without polling the entire dataset, reducing unnecessary API calls.
Batching API Requests
Combine multiple API calls into a single batch request to improve performance and reduce latency during data initialization.
How to install Microsoft Graph SDK
View source1. Install with the skills CLI
npx skills add github/awesome-copilot/msgraph-sdk --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by githubMicrosoft 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
- Use the .NET workflow when the project contains
.cs,.csproj, or.slnfiles, or when the user asks for C# guidance. Follow references/dotnet.md. - Use the TypeScript / JavaScript workflow when the project contains
package.json,.ts, or.jsfiles, or when the user asks for Node.js / browser guidance. Follow references/typescript.md. - Use the Python workflow when the project contains
.py,pyproject.toml, orrequirements.txt, or when the user asks for Python guidance. Follow references/python.md. - If multiple languages are present, match the language of the files being edited or ask the user.
Always consult live documentation
- Microsoft Graph overview: https://learn.microsoft.com/graph/overview
- Graph Explorer (try calls live): https://developer.microsoft.com/graph/graph-explorer
- Graph permissions reference: https://learn.microsoft.com/graph/permissions-reference
- Use Microsoft Docs MCP tooling when available to fetch current API shapes and SDK samples.
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
DefaultAzureCredentialin 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
awaitasync calls. - Specify
$selectto limit returned fields — Graph returns large default payloads. - Use
$filterserver-side rather than filtering returned collections in memory. - Use
$expandto 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.nextLinkon the response. - Use the SDK's
PageIteratorhelper (available in all three SDKs) to walk pages automatically. - Set
$topto 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/deltareturns all items + a@odata.deltaLink. - Subsequent calls: use the
deltaLinkto receive only what changed since the last sync. - Supported on: users, groups, messages, calendar events, Teams channels, and more.
- Store the
deltaLinkdurably (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
validationTokenquery 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-Afterheader — 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
- Determine the target language and read the matching reference file.
- Identify the auth scenario and choose the correct flow from the table above.
- Fetch current SDK docs and Graph Explorer examples before making implementation choices.
- Apply least-privilege permissions — confirm in the Graph permissions reference.
- Implement pagination from the start — don't assume single-page responses.
- Enable retry middleware for throttling from day one.
- For syncing scenarios, prefer delta queries over polling.
- 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).
GraphServiceClientis constructed once and reused.- All collection reads handle pagination.
- Throttling (429) is handled via retry middleware or explicit
Retry-Afterlogic. - Permissions are scoped to the minimum required.
- No secrets or credentials are hardcoded.
- Code matches current SDK version patterns for the selected language.
Frequently asked questions about Microsoft Graph SDK
Similar skills
WinMD API Search
Easily find and explore Windows desktop APIs.
WebMCPify
Transform any web app into an agent-ready platform.
Phoenix Tracing
Instrument LLM applications with OpenInference tracing.
Foundry Hosted Agent CopilotKit
Guidance for developing agentic web apps on Azure.
Power Automate Foundation
Connect AI agents to Power Automate seamlessly.
Power Automate Flow Builder
Efficiently build and deploy Power Automate flows programmatically.
