-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
63 lines (63 loc) · 2 KB
/
Copy pathserver.json
File metadata and controls
63 lines (63 loc) · 2 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.wyre-technology/spanning-mcp",
"title": "Spanning Cloud Backup",
"description": "MCP server for Spanning Cloud Backup — M365/GWS/Salesforce backups, restores, audit.",
"repository": {
"url": "https://github.com/wyre-technology/spanning-mcp",
"source": "github"
},
"version": "0.0.0",
"websiteUrl": "https://github.com/wyre-technology/spanning-mcp",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/wyre-technology/spanning-mcp:0.0.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "SPANNING_PLATFORM",
"description": "Platform: 'm365', 'gws', or 'salesforce'",
"isRequired": true,
"format": "string"
},
{
"name": "SPANNING_ADMIN_EMAIL",
"description": "Spanning admin account email",
"isRequired": true,
"format": "string"
},
{
"name": "SPANNING_API_TOKEN",
"description": "Spanning API token",
"isRequired": true,
"isSecret": true,
"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"
}
]
}
]
}