Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_list_backups

Retrieve a list of available backups for a WordPress site to restore previous versions or recover data.

Instructions

Get a list of backups for a specific site.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • The handler function for 'pressable_list_backups' which calls the API to list backups for a site.
    handler: async (args) => {
        return await api.get(`/sites/${args.id}/backups`);
    }
  • The input schema for 'pressable_list_backups'.
    inputSchema: {
        type: 'object',
        properties: { id: { type: 'string' } },
        required: ['id']
    },
  • tools/backups.js:4-15 (registration)
    The registration object for 'pressable_list_backups'.
    {
        name: 'pressable_list_backups',
        description: 'Get a list of backups for a specific site.',
        inputSchema: {
            type: 'object',
            properties: { id: { type: 'string' } },
            required: ['id']
        },
        handler: async (args) => {
            return await api.get(`/sites/${args.id}/backups`);
        }
    },
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