An MCP server implementation that integrates with the Slide API, providing comprehensive device and infrastructure management capabilities through a streamlined meta-tools architecture.
- Single binary: No dependencies, just download and run
- Fast startup: ~50ms startup time with initial context loading
- Low memory usage: 10-20MB memory footprint
- Cross-platform: Linux, macOS, Windows binaries
- Zero Installation Hassle: Simple download and configure
- Streamlined Interface: 13 meta-tools instead of 52+ individual tools for better LLM interaction
- Enhanced Performance: Initial context loading eliminates first API call delays
For quick setup instructions with Claude Desktop, see the installation section below.
Meta-Tools Design: This MCP server uses an innovative meta-tools architecture that consolidates 52+ individual API operations into just 13 focused meta-tools. This design significantly reduces complexity for LLMs while maintaining full functionality.
Each meta-tool accepts an operation
parameter that specifies the action to perform, along with the relevant parameters for that operation.
{
"name": "slide_devices",
"arguments": {
"operation": "list",
"limit": 10,
"client_id": "client-123"
}
}
-
slide_devices
- Physical device management- Operations:
list
,get
,update
,poweroff
,reboot
- Power control, hostname/display name updates, client assignment
- Operations:
-
slide_agents
- Backup agent management- Operations:
list
,get
,create
,pair
,update
- Agent creation, pairing with devices, display name management
- Operations:
-
slide_networks
- Network infrastructure- Operations:
list
,get
,create
,update
,delete
- Network creation with DHCP, VPN support, client isolation
- IPSec:
create_ipsec
,update_ipsec
,delete_ipsec
- Port Forwarding:
create_port_forward
,update_port_forward
,delete_port_forward
- WireGuard VPN:
create_wg_peer
,update_wg_peer
,delete_wg_peer
- Operations:
-
slide_backups
- Backup operations- Operations:
list
,get
,start
- Initiate and monitor backup jobs
- Operations:
-
slide_snapshots
- Snapshot management- Operations:
list
,get
- Browse and access point-in-time snapshots with advanced filtering
- Operations:
-
slide_restores
- File & image restoration- File Restores:
list_files
,get_file
,create_file
,delete_file
,browse_file
- Image Exports:
list_images
,get_image
,create_image
,delete_image
,browse_image
- Support for VHD, VHDX (dynamic/fixed), and Raw disk formats
- Optional boot modifications (passwordless admin user)
- File Restores:
slide_vms
- Virtual machine management- Operations:
list
,get
,create
,update
,delete
,get_rdp_bookmark
- Browser-based VNC console access and downloadable RDP bookmarks
- Configurable CPU (1-16 cores) and RAM (1-12GB)
- Multiple network modes and disk bus types
- Operations:
-
slide_user_management
- User and account management- Users:
list_users
,get_user
- User account information and permissions - Accounts:
list_accounts
,get_account
,update_account
- Account settings and alert email configuration - Clients:
list_clients
,get_client
,create_client
,update_client
,delete_client
- Client organization and resource management
- Users:
-
slide_alerts
- Alert monitoring- Operations:
list
,get
,update
(resolve) - System alert management and resolution
- Operations:
-
slide_presentation
- Professional data formatting and documentation- Operations:
get_card
,get_runbook_template
,get_daily_report_template
,get_monthly_report_template
- Card Types: Individual item cards (agent, client, device, snapshot) and table cards (agents_table, clients_table, etc.)
- Report Templates: Runbook procedures, daily activity summaries, monthly analysis reports
- Formats: HTML, Markdown, HAML support for multiple output needs
- Perfect for status displays, dashboards, documentation, and professional reporting
β οΈ DISABLED BY DEFAULT: Must be explicitly enabled with--enable-presentation
flag orSLIDE_ENABLE_PRESENTATION=true
β οΈ IMPORTANT: If you are building your own presentation logic or custom formatting, you may want to disable theslide_presentation
tool to avoid conflicts with your custom implementation. To disable just theslide_presentation
tool, add it to theDISABLED_TOOLS
environment variable or in the --disabled-tools part of the CLI
- Operations:
-
slide_meta
- Meta tools for reporting and aggregated data views- Operations:
list_all_clients_devices_and_agents
,get_snapshot_changes
,get_reporting_data
- list_all_clients_devices_and_agents: Complete hierarchical view of infrastructure
- get_snapshot_changes: Track new and deleted snapshots over time periods (day, week, month)
- get_reporting_data: Pre-formatted data for populating report templates
- Perfect for generating reports with accurate, pre-calculated metrics
- Operations:
-
slide_reports
- Pre-calculated statistics and reports for backup/snapshot analysisβ οΈ DISABLED BY DEFAULT: Must be explicitly enabled with--enable-reports
flag orSLIDE_ENABLE_REPORTS=true
- Operations:
daily_backup_snapshot
,weekly_backup_snapshot
,monthly_backup_snapshot
- Daily Reports: Single day statistics with backup success rates and failure reasons
- Weekly Reports: 7-day breakdown with daily agent counts and success metrics
- Monthly Reports: Full month analysis with visual calendar view (in markdown format)
- Filtering: By agent_id, device_id, or client_id for targeted reporting
- Formats: JSON (structured data) or Markdown (human-readable)
- Performance: Use verbose mode to track progress on large reports
-
slide_docs
- Access to official Slide documentation- Operations:
list_sections
,get_topics
,search_docs
,get_content
,get_api_reference
- Documentation Access: Browse and search docs.slide.tech content directly
- Contextual Help: Get best practices, troubleshooting guidance, and feature explanations
- API Reference: Quick access to API endpoint documentation
- Integration: Complements other tools by providing context and guidance
- Operations:
list_all_clients_devices_and_agents
- Hierarchical overview (now part ofslide_meta
)- Get complete view of all clients, their devices, and agents in one call
- Perfect for answering questions about infrastructure scale and organization
- Can be called directly or via
slide_meta
with operationlist_all_clients_devices_and_agents
- Device Control: Remote power operations, hostname management, client assignment
- Agent Deployment: Automated pairing, display name management
- Network Isolation: Client-specific networks with VPN access
- Advanced Networking: IPSec tunnels, port forwarding, WireGuard peers
- Automated Backups: Agent-based backup initiation and monitoring
- Point-in-Time Recovery: Snapshot browsing with location filtering
- Flexible Restores: File-level and full disk image exports
- Multiple Formats: VHD, VHDX (dynamic/fixed), Raw disk images
- Boot Modifications: Optional passwordless admin account creation
- VM Creation: Create VMs from any snapshot
- Resource Control: Configurable CPU/RAM allocation
- Network Integration: Connect VMs to isolated networks
- Console Access: Browser-based VNC for direct VM interaction
- RDP Bookmarks: Generate downloadable .rdp files for easy Windows Remote Desktop access
- Alert Management: Centralized alert monitoring and resolution
- Client Organization: Group resources by client for better management
- User Management: Account access and permissions
- Comprehensive Filtering: Advanced pagination and sorting across all resources
- Smart Cards: Individual and table-based cards for agents, clients, devices, and snapshots
- Report Templates: Runbook procedures, daily summaries, and monthly analysis reports
- Multiple Formats: HTML, Markdown, and HAML output for different use cases
- Dashboard Ready: Pre-formatted cards perfect for status displays and monitoring
- Documentation Support: Professional templates for operational procedures and troubleshooting
All meta-tools support pagination (limit
, offset
) and sorting options where applicable.
The slide_presentation
tool is your primary resource for professional data formatting and documentation. It provides pre-built templates and smart cards that transform raw data into polished, readable formats.
Always consider this tool first when you need to:
- Display system status or monitoring data to users
- Show lists of items (agents, clients, devices, snapshots)
- Present individual item details in a structured format
- Create reports or summaries
- Generate documentation or procedures
- Format any data that could benefit from professional presentation
Perfect for comprehensive documentation and analysis:
- Purpose: Operational procedures, troubleshooting guides, step-by-step instructions
- Use Cases: Incident response, maintenance procedures, troubleshooting guides
- Formats: HTML, Markdown, HAML
- Purpose: Activity summaries, status updates, end-of-day reports
- Use Cases: Daily operational summaries, status briefings, activity tracking
- Formats: HTML (default), Markdown, HAML
- Purpose: Comprehensive analysis, trends, monthly summaries
- Use Cases: Executive summaries, trend analysis, performance reviews
- Formats: HTML (default), Markdown, HAML
Perfect for status displays, dashboards, and data visualization:
agent
: Individual backup agent with hostname, OS, status, recent backupsclient
: Individual client with name, agent count, device assignments, statsdevice
: Individual backup device with capacity, assignments, storage infosnapshot
: Individual backup snapshot with date, size, status, retention
agents_table
: Multiple agents comparison with status overview and assignmentsclients_table
: Multiple clients summary with agent counts and statusdevices_table
: Multiple devices overview with capacity and utilizationsnapshots_table
: Chronological backup history with sizes and status
Choose the right presentation format based on your needs:
Need | Recommendation | Example |
---|---|---|
Show ONE item in detail | Single item cards | agent , client , device , snapshot |
Show MULTIPLE items overview | Table cards | agents_table , clients_table , devices_table |
Create documentation | Report templates | get_runbook_template |
Generate status reports | Daily/Monthly templates | get_daily_report_template |
Dashboard display | Table cards | agents_table , devices_table |
Troubleshooting guide | Runbook template | get_runbook_template |
- Start with Presentation: Always consider using the presentation tool before displaying raw data
- Choose the Right Card: Use single cards for details, table cards for overviews
- Format for Purpose: Use HTML for web displays, Markdown for documentation
- Professional Output: Let the tool handle formatting instead of manual formatting
- Consistent Experience: Use cards for a consistent look and feel across all data displays
- Log in to your Slide account
- Navigate to your account settings
- Generate your API key from the API section
For the easiest installation experience, use our cross-platform GUI installer with native desktop integration:
-
Download the installer: From the latest release
- Apple Silicon (M1/M2/M3/M4):
slide-mcp-installer-v2.3.2-darwin-arm64-signed.tar.gz
- Intel Mac:
slide-mcp-installer-v2.3.2-darwin-amd64-signed.tar.gz
- Apple Silicon (M1/M2/M3/M4):
-
Extract and run:
tar -xzf slide-mcp-installer-v2.3.2-darwin-[arch]-signed.tar.gz open slide-mcp-installer.app
-
Enter your API key: Input your Slide API key when prompted
-
Install: Click "Install Slide MCP Server"
-
Restart Claude Desktop: The installer will configure everything automatically
-
Download the installer: From the latest release
- 64-bit:
slide-mcp-installer-v2.3.2-windows-amd64.zip
- 64-bit:
-
Extract and run:
- Extract the ZIP file
- Run
slide-mcp-installer.exe
-
Enter your API key: Input your Slide API key when prompted
-
Install: Click "Install Slide MCP Server"
-
Restart Claude Desktop: The installer will configure everything automatically
The GUI installer provides:
- β Smart Detection: Automatically detects Claude Desktop installation and existing configurations
- β
Native Integration: Proper
.app
bundle on macOS with icon support, no terminal windows - β Automatic Download: Fetches the latest slide-mcp-server binary for your platform
- β Intelligent Installation: Installs to the correct location with proper permissions
- β Configuration Management: Updates Claude Desktop configuration seamlessly
- β API Key Management: Shows current API key status and allows easy updates
- β Progress Tracking: Visual progress bar and status updates during installation
- β Clean Uninstall: Complete removal of server and configuration when needed
- β Cross-Platform: Available for Windows, macOS (Intel & Apple Silicon), and Linux
For macOS ARM64 (Apple Silicon):
curl -L -o slide-mcp-server-v2.3.2-macos-arm64.tar.gz https://github.com/amcchord/slideMCP/releases/latest/download/slide-mcp-server-v2.3.2-macos-arm64.tar.gz
tar -xzf slide-mcp-server-v2.3.2-macos-arm64.tar.gz
chmod +x slide-mcp-server-v2.3.2-macos-arm64
mv slide-mcp-server-v2.3.2-macos-arm64 slide-mcp-server
For macOS x64:
curl -L -o slide-mcp-server-v2.3.2-macos-x64.tar.gz https://github.com/amcchord/slideMCP/releases/latest/download/slide-mcp-server-v2.3.2-macos-x64.tar.gz
tar -xzf slide-mcp-server-v2.3.2-macos-x64.tar.gz
chmod +x slide-mcp-server-v2.3.2-macos-x64
mv slide-mcp-server-v2.3.2-macos-x64 slide-mcp-server
For Linux x64:
curl -L -o slide-mcp-server-v2.3.2-linux-x64.tar.gz https://github.com/amcchord/slideMCP/releases/latest/download/slide-mcp-server-v2.3.2-linux-x64.tar.gz
tar -xzf slide-mcp-server-v2.3.2-linux-x64.tar.gz
chmod +x slide-mcp-server-v2.3.2-linux-x64
mv slide-mcp-server-v2.3.2-linux-x64 slide-mcp-server
For Linux ARM64:
curl -L -o slide-mcp-server-v2.3.2-linux-arm64.tar.gz https://github.com/amcchord/slideMCP/releases/latest/download/slide-mcp-server-v2.3.2-linux-arm64.tar.gz
tar -xzf slide-mcp-server-v2.3.2-linux-arm64.tar.gz
chmod +x slide-mcp-server-v2.3.2-linux-arm64
mv slide-mcp-server-v2.3.2-linux-arm64 slide-mcp-server
For Windows x64:
curl -L -o slide-mcp-server-v2.3.2-windows-x64.zip https://github.com/amcchord/slideMCP/releases/latest/download/slide-mcp-server-v2.3.2-windows-x64.zip
unzip slide-mcp-server-v2.3.2-windows-x64.zip
mv slide-mcp-server-v2.3.2-windows-x64.exe slide-mcp-server.exe
git clone https://github.com/austinmcchord/slide-mcp-server.git
cd slide-mcp-server
make build
# Binary will be in build/slide-mcp-server
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"slide": {
"command": "/path/to/slide-mcp-server",
"env": {
"SLIDE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
If installed system-wide:
{
"mcpServers": {
"slide": {
"command": "slide-mcp-server",
"env": {
"SLIDE_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
}
With custom permission mode and disabled tools:
{
"mcpServers": {
"slide": {
"command": "/path/to/slide-mcp-server",
"env": {
"SLIDE_API_KEY": "YOUR_API_KEY_HERE",
"SLIDE_TOOLS": "reporting",
"SLIDE_DISABLED_TOOLS": "slide_accounts,slide_users"
}
}
}
}
Or using CLI arguments:
{
"mcpServers": {
"slide": {
"command": "/path/to/slide-mcp-server",
"args": [
"--api-key", "YOUR_API_KEY_HERE",
"--tools", "full-safe",
"--disabled-tools", "slide_agents,slide_backups"
]
}
}
}
# Set your API key
export SLIDE_API_KEY="your-api-key-here"
# Test the server
echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}' | ./slide-mcp-server
# Should respond with server info and capabilities
The Slide MCP Server supports several command-line arguments for flexible configuration:
# Basic usage with API key
./slide-mcp-server --api-key YOUR_API_KEY
# All available flags
./slide-mcp-server [OPTIONS]
Flag | Description | Environment Variable | Default |
---|---|---|---|
--api-key |
Slide API key for authentication | SLIDE_API_KEY |
Required |
--base-url |
Base URL for Slide API endpoint | SLIDE_BASE_URL |
https://api.slide.tech |
--tools |
Permission mode for tool access | SLIDE_TOOLS |
full-safe |
--disabled-tools |
Comma-separated list of tools to disable | SLIDE_DISABLED_TOOLS |
None |
--enable-presentation |
Enable the slide_presentation tool |
SLIDE_ENABLE_PRESENTATION |
false |
--enable-reports |
Enable the slide_reports tool |
SLIDE_ENABLE_REPORTS |
false |
--version |
Show version information and exit | - | - |
Priority: CLI flags take precedence over environment variables.
# Using CLI flags
./slide-mcp-server --api-key sk_test_123 --base-url https://custom.api.endpoint --tools reporting
# Using environment variables
export SLIDE_API_KEY="sk_test_123"
export SLIDE_BASE_URL="https://custom.api.endpoint"
export SLIDE_TOOLS="reporting"
./slide-mcp-server
# Mixed usage (CLI overrides environment)
export SLIDE_TOOLS="full"
./slide-mcp-server --api-key sk_test_123 --tools reporting # Uses reporting mode
# Disable specific tools
./slide-mcp-server --api-key sk_test_123 --disabled-tools "slide_agents,slide_backups"
# Enable presentation and reports tools (disabled by default)
./slide-mcp-server --api-key sk_test_123 --enable-presentation --enable-reports
# Enable only the presentation tool
./slide-mcp-server --api-key sk_test_123 --enable-presentation
# Show version
./slide-mcp-server --version
# Output: slide-mcp-server version 2.3.2
In addition to permission modes, you can disable specific tools entirely using the --disabled-tools
flag or SLIDE_DISABLED_TOOLS
environment variable. This provides fine-grained control over which tools are available.
# Disable specific tools via CLI flag
./slide-mcp-server --api-key YOUR_KEY --disabled-tools "slide_agents,slide_backups"
# Disable tools via environment variable
export SLIDE_DISABLED_TOOLS="slide_devices,slide_users"
./slide-mcp-server --api-key YOUR_KEY
# Combined with permission modes
./slide-mcp-server --api-key YOUR_KEY --tools reporting --disabled-tools "slide_snapshots"
# Whitespace is handled gracefully
./slide-mcp-server --api-key YOUR_KEY --disabled-tools " slide_agents , slide_backups , slide_devices "
slide_agents
- Agent managementslide_backups
- Backup operationsslide_snapshots
- Snapshot managementslide_restores
- File and image restorationslide_networks
- Network managementslide_user_management
- User and account managementslide_alerts
- Alert monitoringslide_devices
- Device managementslide_vms
- Virtual machine managementslide_presentation
- Data presentation and reportingslide_meta
- Meta tools for reporting and aggregated data viewsslide_reports
- Pre-calculated backup/snapshot statistics and reportsslide_docs
- Access to official Slide documentationlist_all_clients_devices_and_agents
- Hierarchical overview (legacy, use slide_meta instead)
- Precedence: CLI flags take precedence over environment variables
- Whitespace Handling: Extra spaces around tool names are automatically trimmed
- Error Messages: Clear error messages when attempting to use disabled tools
- Combined Filtering: Works alongside permission modes for layered access control
- Transparency: Logs which tools are disabled on server startup
# Create a read-only server that can't access sensitive data
./slide-mcp-server --tools reporting --disabled-tools "slide_accounts,slide_users"
# Allow restores but prevent network changes
./slide-mcp-server --tools restores --disabled-tools "slide_networks"
# Monitoring setup that excludes VM management
./slide-mcp-server --tools reporting --disabled-tools "slide_vms,slide_networks"
When a disabled tool is called, the server returns:
{
"error": {
"code": -32601,
"message": "Tool 'slide_agents' is disabled"
}
}
The slide_presentation
and slide_reports
tools are disabled by default and must be explicitly enabled using CLI flags or environment variables. This design prevents accidental exposure of potentially sensitive reporting capabilities.
slide_presentation
: Provides advanced formatting and templating capabilities that could potentially be misused for data extraction or system information gatheringslide_reports
: Generates comprehensive system reports that may contain sensitive operational data
# Enable both tools via CLI flags
./slide-mcp-server --api-key YOUR_KEY --enable-presentation --enable-reports
# Enable only presentation tool
./slide-mcp-server --api-key YOUR_KEY --enable-presentation
# Enable only reports tool
./slide-mcp-server --api-key YOUR_KEY --enable-reports
# Enable via environment variables
export SLIDE_ENABLE_PRESENTATION=true
export SLIDE_ENABLE_REPORTS=true
./slide-mcp-server --api-key YOUR_KEY
# CLI flags take precedence over environment variables
export SLIDE_ENABLE_PRESENTATION=false
./slide-mcp-server --api-key YOUR_KEY --enable-presentation # Presentation tool will be enabled
# Enable with specific tools mode
./slide-mcp-server --api-key YOUR_KEY --tools reporting --enable-presentation --enable-reports
# Enable while disabling other tools
./slide-mcp-server --api-key YOUR_KEY --enable-reports --disabled-tools "slide_agents,slide_backups"
The server includes a sophisticated permission system with four distinct access levels:
Use Case: Monitoring, reporting, and dashboard integrations
- β
Allowed: All read operations (
list
,get
,browse
) - β Blocked: All create, update, delete operations
- β Blocked: Power control operations
./slide-mcp-server --api-key YOUR_KEY --tools reporting
Use Case: IT support teams performing data recovery and VM management
- β Allowed: All reporting operations
- β Allowed: VM management (create, update, delete)
- β Allowed: File restore operations
- β Allowed: Image export operations
- β Allowed: Network management
- β Allowed: Device management (updates only)
- β Allowed: Agent management (create, pair, update)
- β Allowed: Backup management
- β Blocked: Device power control (poweroff, reboot)
- β Blocked: Account/client management
- β Blocked: Alert resolution
- β Blocked: Agent deletion
- β Blocked: Snapshot deletion
./slide-mcp-server --api-key YOUR_KEY --tools restores
Use Case: General administration with safety guardrails
- β Allowed: All operations except dangerous ones
- β Blocked: Agent deletion (prevents accidental backup disruption)
- β Blocked: Snapshot deletion (prevents data loss)
- β Blocked: Device power control (prevents accidental shutdowns)
./slide-mcp-server --api-key YOUR_KEY --tools full-safe
# OR simply (default mode)
./slide-mcp-server --api-key YOUR_KEY
Use Case: Advanced administrators who need unrestricted access
- β Allowed: All operations including dangerous ones
β οΈ Warning: Includes agent and snapshot deletion
./slide-mcp-server --api-key YOUR_KEY --tools full
Operation Category | reporting |
restores |
full-safe |
full |
---|---|---|---|---|
List/Get/Browse | β | β | β | β |
Device Power Control | β | β | β | β |
VM Management | β | β | β | β |
Network Management | β | β | β | β |
File Restores | β | β | β | β |
Image Exports | β | β | β | β |
Backup Jobs | β | β | β | β |
Account Management | β | β | β | β |
Alert Resolution | β | β | β | β |
Agent Creation/Updates | β | β | β | β |
Agent Deletion | β | β | β | β |
Snapshot Deletion | β | β | β | β |
- Production Monitoring: Use
reporting
mode for read-only dashboards and monitoring systems - Support Teams: Use
restores
mode for IT support staff performing data recovery - General Administration: Use
full-safe
mode (default) for most administrative tasks - Advanced Users Only: Use
full
mode only when agent or snapshot deletion is specifically required
For VS Code integration, add the following JSON block to your User Settings (JSON) file. You can do this by pressing Ctrl + Shift + P
and typing Preferences: Open User Settings (JSON)
.
Optionally, you can add it to a file called .vscode/mcp.json
in your workspace. This will allow you to share the configuration with others.
Note that the
mcp
key is not needed in the.vscode/mcp.json
file.
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "slide_api_key",
"description": "Slide API Key",
"password": true
}
],
"servers": {
"slide": {
"command": "/path/to/slide-mcp-server",
"env": {
"SLIDE_API_KEY": "${input:slide_api_key}"
}
}
}
}
}
With custom configuration and disabled tools:
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "slide_api_key",
"description": "Slide API Key",
"password": true
}
],
"servers": {
"slide": {
"command": "/path/to/slide-mcp-server",
"env": {
"SLIDE_API_KEY": "${input:slide_api_key}",
"SLIDE_TOOLS": "reporting",
"SLIDE_DISABLED_TOOLS": "slide_accounts,slide_users"
}
}
}
}
}
{
"name": "slide_devices",
"arguments": {
"operation": "list",
"limit": 20,
"client_id": "client-123"
}
}
{
"name": "slide_networks",
"arguments": {
"operation": "create",
"name": "Development Network",
"type": "standard",
"router_prefix": "192.168.100.1/24",
"dhcp": true,
"dhcp_range_start": "192.168.100.10",
"dhcp_range_end": "192.168.100.200",
"wg": true,
"wg_prefix": "10.100.0.0/24",
"client_id": "client-123"
}
}
{
"name": "slide_vms",
"arguments": {
"operation": "create",
"snapshot_id": "snapshot-456",
"device_id": "device-789",
"cpu_count": 4,
"memory_in_mb": 8192,
"network_type": "network-id",
"network_source": "network-123"
}
}
{
"name": "slide_vms",
"arguments": {
"operation": "get_rdp_bookmark",
"virt_id": "vm-123"
}
}
{
"name": "slide_docs",
"arguments": {
"operation": "search_docs",
"query": "backup retention policies"
}
}
- Initial Context Loading: The MCP server loads client/device/agent hierarchy data at startup, eliminating typical first API call delays and providing immediate access to infrastructure overview
- Faster Response Times: Initial context provides instant availability of system data for better user experience
- RDP Bookmark Generation:
get_rdp_bookmark
operation inslide_vms
tool- Generate downloadable Windows Remote Desktop (.rdp) files
- One-click access to virtual machines via standard RDP clients
- Compatible with Windows Remote Desktop, macOS Remote Desktop, and other RDP clients
- Includes optimized settings for compression, audio, clipboard, and display
- Automatic validation of RDP endpoint availability
- User-friendly filename suggestions and clear usage instructions
- Built-in Documentation Access: The
slide_docs
tool provides direct access to official Slide documentation - Contextual Help: Get best practices, troubleshooting guidance, and API reference information
- Search Capabilities: Find relevant documentation without leaving your MCP client
- Improved Context: Enhanced documentation access with better navigation and search capabilities
- Cross-Platform GUI: Native desktop installer for Windows, macOS, and Linux
- Smart Detection: Automatically detects Claude Desktop installation and existing configurations
- One-Click Installation: Download, install, and configure with a single click
- API Key Management: Easy API key updates and configuration management
- Clean Uninstall: Complete removal of server and configuration when needed
{
"name": "slide_backups",
"arguments": {
"operation": "start",
"agent_id": "agent-456"
}
}
{
"name": "slide_restores",
"arguments": {
"operation": "create_image",
"snapshot_id": "snapshot-789",
"device_id": "device-123",
"image_type": "vhd-dynamic",
"boot_remove_passwords": true
}
}
{
"name": "slide_presentation",
"arguments": {
"operation": "get_card",
"card_type": "agent"
}
}
{
"name": "slide_presentation",
"arguments": {
"operation": "get_card",
"card_type": "devices_table"
}
}
{
"name": "slide_presentation",
"arguments": {
"operation": "get_runbook_template",
"format": "markdown"
}
}
{
"name": "slide_presentation",
"arguments": {
"operation": "get_daily_report_template",
"format": "html"
}
}
{
"name": "slide_reports",
"arguments": {
"operation": "daily_backup_snapshot",
"agent_id": "agent-123",
"format": "markdown"
}
}
{
"name": "slide_docs",
"arguments": {
"operation": "search_docs",
"query": "backup retention policies"
}
}
The MCP server includes a comprehensive documentation access system through the slide_docs
tool. The documentation system has been enhanced with contextual descriptions to help LLMs make better choices when navigating between similar-sounding sections.
-
Section Descriptions: Each documentation section now includes a detailed description explaining its purpose
- Example: "Slide Console > Networks" is clarified as "managing virtual networks on Slide devices/cloud"
- Example: "Product > Networking" is clarified as "network infrastructure requirements and prerequisites"
-
Topic Descriptions: Ambiguous topic names include contextual descriptions
- Topics like "Networks (Managing Networks)" vs "Networking (Requirements)" are clearly differentiated
-
Context-Aware Search: Search results include section and topic descriptions to help identify the correct documentation
-
Improved Navigation: The LLM can now better distinguish between:
- Configuration vs Requirements documentation
- Console UI features vs System prerequisites
- User management vs Client organization management
Run the test script to verify the context improvements:
./test_scripts/test_docs_context.sh
# Build for current platform
make build
# Build for all platforms
make build-all
# Create release packages
make release
# View available commands
make help
- Reduced Complexity: 14 meta-tools vs 52+ individual tools
- Logical Grouping: Related operations organized together
- Consistent Interface: All meta-tools follow the same operation pattern
- Better Context: Less tool switching, more focused conversations
- Maintainable: Each meta-tool in its own file
- Extensible: Easy to add new operations to existing categories
- Backward Compatible: All original functionality preserved
- Schema Validation: Conditional parameter validation per operation
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.