ms-graph-dev
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ms-graph-devbuild a request to list all users in the tenant"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Microsoft Graph Dev MCP
An MCP server that helps you construct and validate Microsoft Graph REST API calls — no authentication required in the server itself.
Tools are loaded on demand by resource category. Ask about SharePoint and the sites tools appear. Ask about files and the OneDrive tools appear. The server starts lean and grows with your needs, and always knows the required permissions for every operation.
What it does
Constructs valid Graph API request URLs, methods, headers, and bodies
Validates required and optional parameters
Returns required Microsoft Graph permissions (delegated and application) for every operation
Returns ready-to-use fetch code examples
Links to official Microsoft documentation for every operation
Explains cross-cutting concepts: pagination, OData queries, throttling, delta sync, batching, and auth
Loads resource categories on demand — only what you need
Related MCP server: ForIT Microsoft Graph
Tools
Always available
These tools are loaded immediately — no setup required.
Tool | Description |
| List all resource categories and which are currently loaded |
| Load tools for a category; triggers |
| Search Graph API endpoints by keyword; returns a |
| Build a valid |
| How |
|
|
| 429 handling, |
| Delta tokens, change tracking, initial sync vs incremental sync |
| JSON batching, |
| Delegated vs application permissions, consent flows, token acquisition |
Resource categories (loaded on demand)
Category | Tools | What you get |
users | 8 | Get, list, create, update, delete users; manager; direct reports; delta sync |
files | 11 | OneDrive/SharePoint document library: list, get, upload (<4MB and resumable), create folder, delete, move, copy, search, download URL, delta sync |
9 | List and get messages, send, create draft, reply, delete, move, list folders, delta sync | |
calendar | 8 | List, get, create, update, delete events; find meeting times; get free/busy schedule; delta sync |
groups | 8 | List, get, create, delete groups; list and manage members and owners |
notes | 8 | OneNote notebooks, sections, pages; create and read content |
tasks | 10 | Planner plans and tasks (CRUD); Microsoft To Do lists and tasks |
sites | 12 | SharePoint sites; lists; list items (CRUD); columns |
subscriptions | 5 | Create, list, get, delete, and renew webhook change notification subscriptions |
Example tool output
Every tool returns a structured object with the full request details and required permissions:
{
"endpoint": "https://graph.microsoft.com/v1.0/sites/{siteId}/lists/{listId}/items?expand=fields",
"method": "GET",
"headers": {
"Authorization": "Bearer {token}"
},
"pathParams": { "siteId": "contoso.sharepoint.com,abc123", "listId": "list456" },
"queryParams": { "expand": "fields" },
"body": null,
"description": "List items in list list456.",
"docsUrl": "https://learn.microsoft.com/en-us/graph/api/listitem-list",
"codeExample": "const response = await fetch('...', { method: 'GET', headers: { Authorization: 'Bearer {token}' } });\nconst data = await response.json();",
"requiredPermissions": {
"delegated": ["Sites.Read.All"],
"application": ["Sites.Read.All"]
},
"notes": "Column values are returned under the 'fields' property. This request already includes ?expand=fields. Without it the items array would contain only metadata, not column data."
}Installation
The recommended way to run this server is via npx — no local install needed.
npx -y @stubbedev/ms-graph-dev-mcpClaude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"ms-graph-dev": {
"command": "npx",
"args": ["-y", "@stubbedev/ms-graph-dev-mcp"]
}
}
}Claude Code (CLI)
claude mcp add ms-graph-dev -- npx -y @stubbedev/ms-graph-dev-mcpOr add to your project's .mcp.json:
{
"mcpServers": {
"ms-graph-dev": {
"command": "npx",
"args": ["-y", "@stubbedev/ms-graph-dev-mcp"]
}
}
}Cursor
Open Settings → MCP and add a new server, or edit ~/.cursor/mcp.json:
{
"mcpServers": {
"ms-graph-dev": {
"command": "npx",
"args": ["-y", "@stubbedev/ms-graph-dev-mcp"]
}
}
}Windsurf
Edit ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"ms-graph-dev": {
"command": "npx",
"args": ["-y", "@stubbedev/ms-graph-dev-mcp"]
}
}
}Zed
Edit your settings.json (open via Zed → Settings → Open Settings):
{
"context_servers": {
"ms-graph-dev": {
"command": {
"path": "npx",
"args": ["-y", "@stubbedev/ms-graph-dev-mcp"]
}
}
}
}OpenCode
Edit ~/.config/opencode/config.json:
{
"mcp": {
"ms-graph-dev": {
"type": "local",
"command": ["npx", "-y", "@stubbedev/ms-graph-dev-mcp"]
}
}
}Codex (OpenAI)
Edit ~/.codex/config.json:
{
"mcpServers": {
"ms-graph-dev": {
"command": "npx",
"args": ["-y", "@stubbedev/ms-graph-dev-mcp"]
}
}
}Development
git clone https://github.com/stubbedev/ms-graph-dev-mcp.git
cd ms-graph-dev-mcp
npm install
npm run build
npm startFor live reload during development:
npm run devTest with MCP Inspector
npx @modelcontextprotocol/inspector npx -y @stubbedev/ms-graph-dev-mcpLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityDmaintenanceUniversal Microsoft Graph API gateway providing access to 1000+ endpoints for managing Microsoft 365 services including Teams, SharePoint, Exchange, Intune, security, compliance, and Azure AD with dynamic tool generation and advanced features like batch operations and webhooks.Last updated55MIT
- FlicenseAqualityBmaintenanceProvides direct access to Microsoft Graph API with multi-tenant account management, allowing users to interact with Microsoft 365 services across multiple tenants through a single flexible graph-request tool.Last updated713
- Alicense-qualityFmaintenanceEnables AI assistants to interact with Microsoft 365 services (users, mail, calendar, files) via Microsoft Graph API.Last updated261MIT
- AlicenseBqualityDmaintenanceEnables interaction with Microsoft Outlook services (Tasks, Calendar, Email, Contacts, and Teams) via the Microsoft Graph API, providing 39 tools for Claude Desktop with natural language and JSON output.Last updated39MIT
Related MCP Connectors
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Official Microsoft MCP Server to query Microsoft Entra data using natural language
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/stubbedev/ms-graph-dev-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server