-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
69 lines (69 loc) · 2.25 KB
/
server.json
File metadata and controls
69 lines (69 loc) · 2.25 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.wyre-technology/cipp-mcp",
"title": "CIPP",
"description": "MCP server for CIPP — M365 multi-tenant management for MSPs (users, tenants, policies).",
"repository": {
"url": "https://github.com/wyre-technology/cipp-mcp",
"source": "github"
},
"version": "0.0.0",
"websiteUrl": "https://github.com/wyre-technology/cipp-mcp",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/wyre-technology/cipp-mcp:0.0.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "CIPP_API_URL",
"description": "Base URL of your CIPP API instance (e.g. https://cipp-api.example.com)",
"isRequired": true,
"format": "string"
},
{
"name": "CIPP_CLIENT_ID",
"description": "Entra ID application (client) ID used to authenticate to CIPP",
"isRequired": true,
"format": "string"
},
{
"name": "CIPP_CLIENT_SECRET",
"description": "Entra ID client secret for the CIPP application",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "CIPP_TENANT_ID",
"description": "Entra ID tenant ID hosting the CIPP application registration",
"isRequired": false,
"format": "string"
},
{
"name": "MCP_TRANSPORT",
"description": "Transport mode for the server. Set to 'stdio' for local CLI use; the image defaults to 'http' for gateway hosting.",
"isRequired": false,
"default": "stdio",
"format": "string"
},
{
"name": "AUTH_MODE",
"description": "Credential source: 'env' reads vars locally, 'gateway' expects header injection from the WYRE MCP Gateway.",
"isRequired": false,
"default": "env",
"format": "string"
},
{
"name": "LOG_LEVEL",
"description": "Log verbosity: debug, info, warn, error",
"isRequired": false,
"default": "info",
"format": "string"
}
]
}
]
}