-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
51 lines (51 loc) · 1.68 KB
/
Copy pathserver.json
File metadata and controls
51 lines (51 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.mspstack/mcp-planner",
"title": "Microsoft Planner",
"description": "Microsoft Planner MCP server — plans, buckets, tasks via Microsoft Graph, ETags handled",
"version": "0.3.0",
"repository": {
"url": "https://github.com/mspstack/mcp-planner",
"source": "github"
},
"websiteUrl": "https://github.com/mspstack/mcp-planner#readme",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "mcp-planner",
"version": "0.3.0",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "MS_TENANT_ID",
"description": "Microsoft Entra ID tenant id (GUID or domain)",
"isRequired": true,
"isSecret": false
},
{
"name": "MS_CLIENT_ID",
"description": "Entra app registration client id",
"isRequired": true,
"isSecret": false
},
{
"name": "MS_CLIENT_SECRET",
"description": "Entra app registration client secret (app needs Tasks.ReadWrite.All, GroupMember.Read.All, User.Read.All application permissions)",
"isRequired": true,
"isSecret": true
},
{
"name": "PLANNER_ADVANCED_TOOLSET",
"description": "true/1 registers the advanced toolset (graph_get, graph_find_endpoint) — a read-only escape hatch limited to /planner, /groups, /users",
"isRequired": false,
"isSecret": false,
"default": "false"
}
]
}
]
}