https://github.com/wyre-technology/spanning-mcp
MCP server for Spanning Cloud Backup — M365/GWS/Salesforce SaaS backup, restore, audit
https://github.com/wyre-technology/spanning-mcp
claude kaseya m365 mcp model-context-protocol msp saas-backup salesforce spanning
Last synced: 2 days ago
JSON representation
MCP server for Spanning Cloud Backup — M365/GWS/Salesforce SaaS backup, restore, audit
- Host: GitHub
- URL: https://github.com/wyre-technology/spanning-mcp
- Owner: wyre-technology
- License: apache-2.0
- Created: 2026-05-01T19:54:15.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-05-29T22:09:09.000Z (14 days ago)
- Last Synced: 2026-05-29T23:20:16.066Z (14 days ago)
- Topics: claude, kaseya, m365, mcp, model-context-protocol, msp, saas-backup, salesforce, spanning
- Language: JavaScript
- Size: 145 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Spanning Cloud Backup MCP Server
[](https://github.com/wyre-technology/spanning-mcp/actions/workflows/ci.yml)
[](https://opensource.org/licenses/Apache-2.0)
A [Model Context Protocol](https://modelcontextprotocol.io) server exposing the
[Spanning Cloud Backup](https://spanning.com/) API to Claude and other MCP
clients.
## What it does
Surface SaaS backup posture for your M365, Google Workspace, or Salesforce
tenants directly to AI assistants — list backed-up users, inspect covered
services, browse backup history, queue restores, and audit admin activity and
license usage.
## Tools
| Tool | Purpose |
| --- | --- |
| `spanning_list_users` | List backed-up users in the org |
| `spanning_get_user` | Fetch a single user's detail |
| `spanning_list_services` | List services covered for a user |
| `spanning_list_backups` | List backup runs for a user + service |
| `spanning_queue_restore` | Queue a restore (DESTRUCTIVE — requires confirmation) |
| `spanning_get_restore_status` | Check restore progress |
| `spanning_list_audit_log` | Admin audit log (date-range elicitation) |
| `spanning_get_license_usage` | Seats used vs purchased |
| `spanning_status` | Server status / health |
## Credentials
### Local (env mode)
```sh
export SPANNING_PLATFORM="m365" # or "gws" or "salesforce"
export SPANNING_ADMIN_EMAIL="..."
export SPANNING_API_TOKEN="..."
```
### Hosted (gateway mode)
The WYRE MCP Gateway injects credentials per request via headers:
- `X-Spanning-Platform` (required, one of `m365` | `gws` | `salesforce`)
- `X-Spanning-Admin-Email` (required)
- `X-Spanning-API-Token` (required, secret)
## Run
```sh
npm install
npm run build
npm start # stdio
MCP_TRANSPORT=http npm start # HTTP on :8080
```
## License
Apache 2.0 — see [LICENSE](LICENSE).