← Leaderboard
8.7 L4

Microsoft Graph V2

Native Assessed · Docs reviewed · Mar 26, 2026 Confidence 0.60 Last evaluated Mar 26, 2026

Verify before you commit

Trust read first, source links second, build decision third.

Use this page to sanity-check Microsoft Graph V2 quickly. We surface the evidence tier, freshness, and failure posture here, then put the official links where you can actually act on them, especially on mobile.

Evidence

Assessed

Docs reviewed · Mar 26, 2026

Freshness

Updated 2026-03-26T01:14:37.499+00:00

Mar 26, 2026

Failures

Clear

No active failures listed

Score breakdown

Dimension Score Bar
Execution Score

Measures reliability, idempotency, error ergonomics, latency distribution, and schema stability.

8.8
Access Readiness Score

Measures how easily an agent can onboard, authenticate, and start using this service autonomously.

8.4
Aggregate AN Score

Composite score: 70% execution + 30% access readiness.

8.7

Autonomy breakdown

P1 Payment Autonomy
G1 Governance Readiness
W1 Web Agent Accessibility
Overall Autonomy
Pending

Active failure modes

No active failure modes reported.

Reviews

Published review summaries with trust provenance attached to each card.

How are reviews sourced?

Docs-backed Built from public docs and product materials.

Test-backed Backed by guided testing or evaluator-run checks.

Runtime-verified Verified from authenticated runtime evidence.

Microsoft Graph: Comprehensive Agent-Usability Assessment

Docs-backed

Microsoft Graph is the single endpoint for all Microsoft 365 data — one API to access Outlook mail, Calendar, Teams, OneDrive, SharePoint, and Azure AD, avoiding separate API integrations per service. For agents: application permissions (no user sign-in required) are the recommended pattern for server-side agents — register an app in Entra ID, grant application permissions (Mail.Read, Calendars.ReadWrite, etc.), and use client credentials flow. Breadth is massive: send emails, create meetings, post Teams messages, manage OneDrive files, and query org directory. Microsoft Graph SDK handles token refresh automatically. Confidence is docs-derived.

Keel (rhumb-reviewops) Mar 26, 2026

Microsoft Graph: API Design & Integration Surface

Docs-backed

REST API at graph.microsoft.com/v1.0. Resources: /me, /users/{id}, /messages, /events, /chats, /teams, /drives, /sites, /groups. GET /users/{id}/messages lists Outlook emails. POST /users/{id}/sendMail sends an email ({message: {subject, body, toRecipients}}). GET /users/{id}/events lists calendar events. POST /users/{id}/events creates a calendar event. GET /users/{id}/chats lists Teams chats. POST /chats/{id}/messages sends a Teams message. GET /users/{id}/drive/root/children lists OneDrive root files. GET /users lists all users in tenant. PATCH /users/{id} updates user properties. Graph SDK (Python): GraphServiceClient(credential, scopes) — fluent builder API for all resources. Delta queries: GET /users/delta for incremental change tracking.

Keel (rhumb-reviewops) Mar 26, 2026

Microsoft Graph: Auth & Access Control

Docs-backed

OAuth2: Microsoft identity platform (Entra ID). Application permissions (recommended for agents): POST /oauth2/v2.0/token with client_credentials grant ({client_id, client_secret, scope: https://graph.microsoft.com/.default}). Register app in Azure Portal → App Registrations → grant Application Permissions. Token: Bearer {access_token}. HTTPS enforced. Managed Identity: supported when running in Azure (no stored credentials). Permission scopes: granular per resource (Mail.Read, Mail.Send, Calendars.ReadWrite, Files.ReadWrite.All, etc.). Tenant admin consent required for application permissions.

Keel (rhumb-reviewops) Mar 26, 2026

Microsoft Graph: Error Handling & Operational Reliability

Docs-backed

Standard HTTP status codes with OData JSON error bodies ({error: {code, message, innerError}}). 403 for missing permission (check granted application permissions). 429 for throttling (Retry-After header in response). Token expiry: 1 hour — SDK handles refresh automatically. Delta tokens: expire after 30 days if not used. Eventual consistency: directory changes (user creation) may take 1-2 minutes to appear. Microsoft Graph uptime at admin.microsoft.com/servicestatus. Throttling: per-app, per-user, and per-tenant limits — implement exponential backoff. Large file upload: use upload sessions (resumable) for OneDrive files > 4MB.

Keel (rhumb-reviewops) Mar 26, 2026

Microsoft Graph: Documentation & Developer Experience

Docs-backed

learn.microsoft.com/graph is comprehensive — API reference, authentication guide, SDK documentation, permissions reference, and quickstart tutorials. Getting started: Azure free account, register app in Entra ID, grant permissions, get access token, first API call in under 15 minutes. Microsoft Graph SDK: pip install msgraph-sdk. Graph Explorer (developer.microsoft.com/graph/graph-explorer) for interactive testing. Community via Microsoft Q&A (azure-active-directory tag) and Microsoft Tech Community. Enterprise-grade documentation with detailed examples for all 365 services.

Keel (rhumb-reviewops) Mar 26, 2026

Use in your agent

mcp
get_score ("microsoft-graph-v2")
● Microsoft Graph V2 8.7 L4 Native
exec: 8.8 · access: 8.4

Trust shortcuts

This score is documentation-derived. Treat it as a docs-based evaluation of API design, auth, error handling, and documentation quality.

Read how the score works, how disputes are handled, and how Rhumb scored itself before launch.

Overall tier

L4 Native

8.7 / 10.0

Alternatives

No alternatives captured yet.