Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, get in touch and we’ll put it right.

Slide

OCI · GHCR.IO/WYRE-AI/SLIDE-MCP:V1.0.0 · SCANNED SEP 20

MCP server for Slide's backup/BDR (business continuity/disaster recovery) API.

39 Trust /100
Trust breakdown (7 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score → Why this is hard to score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.Unverified
Provenance & Transparency32
Schema Quality & AI Usability79
  • AI-judged instruction clarity (excellent).Pass
  • Tool/resource definitions use about 4156 tokens (~96/item across 43 items; 43 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Tool Safety100
  • No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
  • We read all 43 captured tool definition(s), and no name or description among them implies an irreversible operation.Pass
  • An AI judge read all 43 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 2 categories

Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

How do I install the Slide MCP server?

Slide runs locally as a container image, launched with docker run --rm -i ghcr.io/wyre-ai/slide-mcp:v1.0.0. Ready-made configuration for Claude, Cursor, VS Code, Codex and 3 more is on this page, copied from each client's own documentation.

oci · ghcr.io/wyre-ai/slide-mcp:v1.0.0

# add to Claude Code
claude mcp add wyre-ai-slide-mcp -- docker run --rm -i ghcr.io/wyre-ai/slide-mcp:v1.0.0
// .cursor/mcp.json
{
  "mcpServers": {
    "wyre-ai-slide-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-ai/slide-mcp:v1.0.0"
      ]
    }
  }
}
// .vscode/mcp.json
{
  "servers": {
    "wyre-ai-slide-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-ai/slide-mcp:v1.0.0"
      ]
    }
  }
}
# add to Codex CLI
codex mcp add wyre-ai-slide-mcp -- docker run --rm -i ghcr.io/wyre-ai/slide-mcp:v1.0.0
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "wyre-ai-slide-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-ai/slide-mcp:v1.0.0"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  wyre-ai-slide-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/wyre-ai/slide-mcp:v1.0.0"]
// ~/.netclaw/config/netclaw.json
{
  "McpServers": {
    "wyre-ai-slide-mcp": {
      "Transport": "stdio",
      "Command": "docker",
      "Arguments": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-ai/slide-mcp:v1.0.0"
      ]
    }
  }
}
// mcp.json
{
  "mcpServers": {
    "wyre-ai-slide-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-ai/slide-mcp:v1.0.0"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 20 Sept 26 39

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 20 Sept 2026 · Analysed oci/ghcr.io/wyre-ai/slide-mcp:v1.0.0

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem oci
Reason No attestation published

Background: How many MCP packages publish verified provenance →

MCP tools · 43 exposed · ~4,156 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →

Tool Tokens
slide_browse_file_restore ~93

Browse the files and folders exposed by a file restore, optionally at a specific path.

NameTypeReqDescription
file_restore_idstringyesFile restore ID.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
pathstringPath to browse within the restore. Defaults to the root.

No output schema declared.

No examples provided.

slide_browse_image_export ~69

Browse the files and folders exposed by an image export.

NameTypeReqDescription
image_export_idstringyesImage export ID.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.

No output schema declared.

No examples provided.

slide_get_account ~27

Get a single Slide account by ID.

NameTypeReqDescription
account_idstringyesAccount ID.

No output schema declared.

No examples provided.

slide_get_agent ~66

Get a single agent by ID - backup schedule, retention policy, volumes, alert configs, and connection info. If the agent has user-managed passphrases, only their names/IDs are returned, never the passphrase value itself.

NameTypeReqDescription
agent_idstringyesAgent ID.

No output schema declared.

No examples provided.

slide_get_agent_file_versions ~129

Get the snapshot versions available for a specific file path on an agent.

NameTypeReqDescription
agent_idstringyesAgent ID.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
pathstringyesThe path of the file to get versions for. Must be URL-encoded.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "created_time".

No output schema declared.

No examples provided.

slide_get_agent_services ~42

Get the list of backed-up services (e.g. installed applications, database engines) detected on an agent.

NameTypeReqDescription
agent_idstringyesAgent ID.

No output schema declared.

No examples provided.

slide_get_alert ~26

Get a single alert by ID.

NameTypeReqDescription
alert_idstringyesAlert ID.

No output schema declared.

No examples provided.

slide_get_audit_log ~31

Get a single audit log entry by ID.

NameTypeReqDescription
audit_idstringyesAudit log ID.

No output schema declared.

No examples provided.

slide_get_backup ~37

Get a single backup attempt by ID, including its result and error details if it failed.

NameTypeReqDescription
backup_idstringyesBackup ID.

No output schema declared.

No examples provided.

slide_get_client ~26

Get a single client by ID.

NameTypeReqDescription
client_idstringyesClient ID.

No output schema declared.

No examples provided.

slide_get_device ~39

Get a single device by ID - hardware/service model, storage usage, warranty, and service status.

NameTypeReqDescription
device_idstringyesDevice ID.

No output schema declared.

No examples provided.

slide_get_device_network ~36

Get a device's network configuration (DNS servers, network mode, gateway/address).

NameTypeReqDescription
device_idstringyesDevice ID.

No output schema declared.

No examples provided.

slide_get_device_vlan ~41

Get a single VLAN interface on a device by ID.

NameTypeReqDescription
device_idstringyesDevice ID.
vlan_idstringyesVLAN ID.

No output schema declared.

No examples provided.

slide_get_file_restore ~30

Get a single file restore by ID.

NameTypeReqDescription
file_restore_idstringyesFile restore ID.

No output schema declared.

No examples provided.

slide_get_file_restore_push ~48

Get the status of a single file restore push operation.

NameTypeReqDescription
file_restore_idstringyesFile restore ID.
file_restore_push_idstringyesFile restore push ID.

No output schema declared.

No examples provided.

slide_get_image_export ~54

Get a single image export by ID - image type, ISCSI/NFS connection info. Same secret redaction as slide_list_image_exports: no Samba password.

NameTypeReqDescription
image_export_idstringyesImage export ID.

No output schema declared.

No examples provided.

slide_get_network ~63

Get a single disaster-recovery network by ID - port forwards, IPsec connections, and WireGuard peers. Same secret redaction as slide_list_networks: no IPsec PSK, no WireGuard private key.

NameTypeReqDescription
network_idstringyesNetwork ID.

No output schema declared.

No examples provided.

slide_get_snapshot ~34

Get a single snapshot by ID - its storage locations and any deletions.

NameTypeReqDescription
snapshot_idstringyesSnapshot ID.

No output schema declared.

No examples provided.

slide_get_snapshot_service_verification ~44

Get service-verification results for a snapshot (confirms which detected services would boot/mount successfully from it).

NameTypeReqDescription
snapshot_idstringyesSnapshot ID.

No output schema declared.

No examples provided.

slide_get_user ~26

Get a single user by ID.

NameTypeReqDescription
user_idstringyesUser ID.

No output schema declared.

No examples provided.

slide_get_user_avatar ~34

Get a user's avatar image, returned as a base64 data URL.

NameTypeReqDescription
user_idstringyesUser ID.

No output schema declared.

No examples provided.

slide_get_virtual_machine ~58

Get a single virtual machine by ID - state, CPU/memory, network config, RDP endpoint. Same secret redaction as slide_list_virtual_machines: no VNC password.

NameTypeReqDescription
virt_idstringyesVirtual machine ID.

No output schema declared.

No examples provided.

slide_list_accounts ~141

List Slide accounts (the top-level MSP/reseller billing entities), filterable by creation date.

NameTypeReqDescription
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "name".

No output schema declared.

No examples provided.

slide_list_agents ~218

List agents (protected systems - servers, workstations, NAS shares - each paired to a Slide device), filterable by device, client, type, and pairing date. Never returns the agent-encryption passphrase, even if one is set - see slide_get_agent.

NameTypeReqDescription
agent_typestringFilter agents by type.
client_idstringFilter agents belonging to a specific client.
device_idstringFilter agents paired to a specific device.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
paired_afterstringFilter agents to after a specific pairing timestamp (RFC3339 format).
paired_beforestringFilter agents to before a specific pairing timestamp (RFC3339 format).
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "hostname".

No output schema declared.

No examples provided.

slide_list_alerts ~196

List alerts (e.g. device offline, agent backup failed, storage low), filterable by device, agent, resolved status, and creation date.

NameTypeReqDescription
agent_idstringFilter alerts for a specific agent.
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
device_idstringFilter alerts for a specific device.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
resolvedbooleanFilter by whether the alert has been resolved.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "created".

No output schema declared.

No examples provided.

slide_list_audit_actions ~103

List the full set of audit action names usable in slide_list_audit_logs' audit_action_name filter.

NameTypeReqDescription
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "name".

No output schema declared.

No examples provided.

slide_list_audit_logs ~206

List audit log entries, filterable by action name, resource type, client, and audit-time range.

NameTypeReqDescription
audit_action_namestringFilter by audit action name (see slide_list_audit_actions).
audit_resource_type_namestringFilter by audit resource type name (see slide_list_audit_resource_types).
audit_time_afterstringFilter audit logs to after a specific audit timestamp (RFC3339 format).
audit_time_beforestringFilter audit logs to before a specific audit timestamp (RFC3339 format).
client_idstringFilter by client.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "audit_time".

No output schema declared.

No examples provided.

slide_list_audit_resource_types ~106

List the full set of audit resource type names usable in slide_list_audit_logs' audit_resource_type_name filter.

NameTypeReqDescription
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "name".

No output schema declared.

No examples provided.

slide_list_backups ~243

List backup attempts (each may have succeeded or failed), filterable by agent, snapshot, device, and start/end time range.

NameTypeReqDescription
agent_idstringFilter backups for a specific agent.
backup_ended_afterstringFilter to backups completed after a specific timestamp (RFC3339 format).
backup_ended_beforestringFilter to backups completed before a specific timestamp (RFC3339 format).
backup_started_afterstringFilter to backups started after a specific timestamp (RFC3339 format).
backup_started_beforestringFilter to backups started before a specific timestamp (RFC3339 format).
device_idstringFilter backups for a specific device.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
snapshot_idstringFilter to the backup that produced a specific snapshot.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "start_time".

No output schema declared.

No examples provided.

slide_list_billing_credit_memos ~54

List billing credit memos.

NameTypeReqDescription
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.

No output schema declared.

No examples provided.

slide_list_billing_invoices ~51

List billing invoices.

NameTypeReqDescription
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.

No output schema declared.

No examples provided.

slide_list_billing_subscriptions ~53

List subscriptions and device licenses.

NameTypeReqDescription
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.

No output schema declared.

No examples provided.

slide_list_clients ~137

List clients (the MSP's end customers), filterable by creation date.

NameTypeReqDescription
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "id".

No output schema declared.

No examples provided.

slide_list_device_vlans ~30

List a device's configured VLAN interfaces.

NameTypeReqDescription
device_idstringyesDevice ID.

No output schema declared.

No examples provided.

slide_list_devices ~154

List devices (physical or virtual Slide Boxes), filterable by client and creation date.

NameTypeReqDescription
client_idstringFilter devices belonging to a specific client.
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "hostname".

No output schema declared.

No examples provided.

slide_list_file_restore_pushes ~212

List push operations (copying a restored file back to a protected system) for a file restore, filterable by start/end time range.

NameTypeReqDescription
end_time_afterstringFilter to pushes ended after a specific timestamp (RFC3339 format).
end_time_beforestringFilter to pushes ended before a specific timestamp (RFC3339 format).
file_restore_idstringyesFile restore ID.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "start_time".
start_time_afterstringFilter to pushes started after a specific timestamp (RFC3339 format).
start_time_beforestringFilter to pushes started before a specific timestamp (RFC3339 format).

No output schema declared.

No examples provided.

slide_list_file_restores ~144

List file restores (a snapshot exposed for browsing/downloading individual files), filterable by creation date.

NameTypeReqDescription
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "id".

No output schema declared.

No examples provided.

slide_list_image_exports ~167

List image exports (a snapshot exported as an ISCSI/NFS/Samba-mountable disk image), filterable by creation date. The live Samba password is never returned, even though the underlying Slide API includes it.

NameTypeReqDescription
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "id".

No output schema declared.

No examples provided.

slide_list_networks ~194

List disaster-recovery networks, filterable by client and creation date. IPsec connections and WireGuard peers are included with their non-secret fields only - the live IPsec pre-shared key and WireGuard private key are never returned, even though the underlying Slide API includes them.

NameTypeReqDescription
client_idstringFilter networks belonging to a specific client.
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "id".

No output schema declared.

No examples provided.

slide_list_snapshots ~253

List snapshots (taken as part of a successful backup), filterable by agent, location/deletion state, and backup start/end time range.

NameTypeReqDescription
agent_idstringFilter snapshots for a specific agent.
backup_ended_afterstringFilter to snapshots completed after a specific backup end time (RFC3339 format).
backup_ended_beforestringFilter to snapshots completed before a specific backup end time (RFC3339 format).
backup_started_afterstringFilter to snapshots created after a specific backup start time (RFC3339 format).
backup_started_beforestringFilter to snapshots created before a specific backup start time (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
snapshot_locationstringFilter snapshots by location or deleted status. If omitted, defaults to snapshots that exist locally or in the cloud (not deleted).
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "created".

No output schema declared.

No examples provided.

slide_list_users ~137

List users (technicians with console access), filterable by creation date.

NameTypeReqDescription
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "id".

No output schema declared.

No examples provided.

slide_list_virtual_machines ~171

List virtual machines created from a snapshot, filterable by creation date. VNC connection info (host/port/websocket URI) is included, but the live VNC password is never returned even though the underlying Slide API includes it.

NameTypeReqDescription
created_afterstringFilter results to after a specific creation timestamp (RFC3339 format).
created_beforestringFilter results to before a specific creation timestamp (RFC3339 format).
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "created".

No output schema declared.

No examples provided.

slide_search_agent_files ~133

Search the file paths indexed on an agent's protected system (requires file indexing to be enabled on the agent).

NameTypeReqDescription
agent_idstringyesAgent ID.
limitnumberNumber of items to return per page. Defaults to 10.
offsetnumberStarting index for pagination. Defaults to 0.
search_termstringyesThe search term for file paths. Must be URL-encoded.
sort_ascbooleanSort in ascending order. Defaults to false (descending).
sort_bystringField to sort by. Defaults to "path".

No output schema declared.

No examples provided.

Common questions

What is the Slide MCP server?

Slide is an MCP server listed in the public MCP registry as io.github.WYRE-AI/slide-mcp. MCP server for Slide's backup/BDR (business continuity/disaster recovery) API. This page covers its container image (ghcr.io/wyre-ai/slide-mcp:v1.0.0).

Is the Slide MCP server safe to use?

Slide scores 39 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

What tools does the Slide MCP server expose?

Slide exposes 43 tools: slide_list_accounts, slide_get_account, slide_list_agents, slide_get_agent, slide_search_agent_files, and 38 more. Their descriptions and schemas cost roughly 4,156 tokens of context every time the server is loaded.

Is the Slide MCP server still maintained?

Slide is still listed as active in the MCP registry. We last reached this channel on 20 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

What licence is the Slide MCP server under?

Slide declares the NOASSERTION licence, which is not on the OSI-approved list. Read the terms before using it at work, and note this covers the source only, not the cost of any service it calls.