Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_get_backup_download_url

Retrieve a downloadable URL for a specific site backup to access or restore data. Provide the site ID and backup ID to generate the secure download link.

Instructions

Get a download URL for a specific backup.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_idYes
backup_idYes

Implementation Reference

  • The registration and handler implementation for the 'pressable_get_backup_download_url' tool.
        name: 'pressable_get_backup_download_url',
        description: 'Get a download URL for a specific backup.',
        inputSchema: {
            type: 'object',
            properties: {
                site_id: { type: 'string' },
                backup_id: { type: 'integer' }
            },
            required: ['site_id', 'backup_id']
        },
        handler: async (args) => {
            return await api.get(`/sites/${args.site_id}/backups/${args.backup_id}`);
        }
    }
Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PCWProps/pressable-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server