Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_delete_site

Remove a WordPress site from the Pressable hosting platform by specifying its ID or name to manage site lifecycles.

Instructions

Delete a specific site.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe site ID or name to delete

Implementation Reference

  • The handler implementation for 'pressable_delete_site' which calls the API delete endpoint.
    handler: async (args) => {
        return await api.delete(`/sites/${args.id}`);
    }
  • The schema definition for 'pressable_delete_site'.
    inputSchema: {
        type: 'object',
        properties: {
            id: { type: 'string', description: 'The site ID or name to delete' }
        },
        required: ['id']
    },
  • tools/sites.js:51-64 (registration)
    The registration block for 'pressable_delete_site' in the tools list.
    {
        name: 'pressable_delete_site',
        description: 'Delete a specific site.',
        inputSchema: {
            type: 'object',
            properties: {
                id: { type: 'string', description: 'The site ID or name to delete' }
            },
            required: ['id']
        },
        handler: async (args) => {
            return await api.delete(`/sites/${args.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