What is the Microsoft Planner MCP server?
Microsoft Planner MCP server — plans, buckets, tasks via Microsoft Graph, ETags handled
How to install Microsoft Planner
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Environment / auth
MS_TENANT_IDrequiredMicrosoft Entra ID tenant id (GUID or domain)
MS_CLIENT_IDrequiredEntra app registration client id
MS_CLIENT_SECRETrequiredsecretEntra app registration client secret (app needs Tasks.ReadWrite.All, GroupMember.Read.All, User.Read.All application permissions)
PLANNER_ADVANCED_TOOLSETtrue/1 registers the advanced toolset (graph_get, graph_find_endpoint) — a read-only escape hatch limited to /planner, /groups, /users
Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"mcp-planner": {
"command": "npx",
"args": [
"-y",
"mcp-planner"
],
"env": {
"MS_TENANT_ID": "<YOUR_MS_TENANT_ID>",
"MS_CLIENT_ID": "<YOUR_MS_CLIENT_ID>",
"MS_CLIENT_SECRET": "<YOUR_MS_CLIENT_SECRET>",
"PLANNER_ADVANCED_TOOLSET": "<YOUR_PLANNER_ADVANCED_TOOLSET>"
}
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"mcp-planner": {
"command": "npx",
"args": [
"-y",
"mcp-planner"
],
"env": {
"MS_TENANT_ID": "<YOUR_MS_TENANT_ID>",
"MS_CLIENT_ID": "<YOUR_MS_CLIENT_ID>",
"MS_CLIENT_SECRET": "<YOUR_MS_CLIENT_SECRET>",
"PLANNER_ADVANCED_TOOLSET": "<YOUR_PLANNER_ADVANCED_TOOLSET>"
}
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-planner": {
"command": "npx",
"args": [
"-y",
"mcp-planner"
],
"env": {
"MS_TENANT_ID": "<YOUR_MS_TENANT_ID>",
"MS_CLIENT_ID": "<YOUR_MS_CLIENT_ID>",
"MS_CLIENT_SECRET": "<YOUR_MS_CLIENT_SECRET>",
"PLANNER_ADVANCED_TOOLSET": "<YOUR_PLANNER_ADVANCED_TOOLSET>"
}
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"mcp-planner": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-planner"
],
"env": {
"MS_TENANT_ID": "<YOUR_MS_TENANT_ID>",
"MS_CLIENT_ID": "<YOUR_MS_CLIENT_ID>",
"MS_CLIENT_SECRET": "<YOUR_MS_CLIENT_SECRET>",
"PLANNER_ADVANCED_TOOLSET": "<YOUR_PLANNER_ADVANCED_TOOLSET>"
}
}
}
}Claude Code
claude mcp add mcp-planner --env MS_TENANT_ID=<YOUR_MS_TENANT_ID> --env MS_CLIENT_ID=<YOUR_MS_CLIENT_ID> --env MS_CLIENT_SECRET=<YOUR_MS_CLIENT_SECRET> --env PLANNER_ADVANCED_TOOLSET=<YOUR_PLANNER_ADVANCED_TOOLSET> -- npx -y mcp-plannerRelated MCP servers
ConnectWise PSA
Active
ConnectWise PSA (Manage) MCP server — tickets, time entries, companies, configurations, BYOK
5
View repository →TypeScript
MIT
IT Glue
Active
IT Glue MCP server for MSPs — documents, flexible assets, semantic vector search, RBAC, and BYOK
5
View repository →TypeScript
MIT