Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_get_site_usage

Retrieve storage and resource usage data for a WordPress site to monitor performance and manage capacity.

Instructions

Get storage and resource usage for a specific site.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • The handler function for the pressable_get_site_usage tool, which fetches site usage from the Pressable API.
    handler: async (args) => {
        return await api.get(`/sites/${args.id}/usage`);
    }
  • tools/usage.js:17-27 (registration)
    The full registration object for the pressable_get_site_usage tool, including name, description, schema, and handler.
        name: 'pressable_get_site_usage',
        description: 'Get storage and resource usage for a specific site.',
        inputSchema: {
            type: 'object',
            properties: { id: { type: 'string' } },
            required: ['id']
        },
        handler: async (args) => {
            return await api.get(`/sites/${args.id}/usage`);
        }
    },
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