Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_get_edge_cache_status

Check edge caching status for a WordPress site to verify content delivery performance and troubleshoot caching issues.

Instructions

Get the status of edge caching for a specific site.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSite ID or name

Implementation Reference

  • The handler function for 'pressable_get_edge_cache_status' which performs a GET request to the site's edge cache endpoint.
    handler: async (args) => {
        return await api.get(`/sites/${args.id}/edge-cache`);
    }
  • The input schema for 'pressable_get_edge_cache_status' requiring a site id.
    inputSchema: {
        type: 'object',
        properties: { id: { type: 'string', description: 'Site ID or name' } },
        required: ['id']
    },
  • tools/cache.js:4-15 (registration)
    The full tool definition/registration for 'pressable_get_edge_cache_status' in tools/cache.js.
    {
        name: 'pressable_get_edge_cache_status',
        description: 'Get the status of edge caching for a specific site.',
        inputSchema: {
            type: 'object',
            properties: { id: { type: 'string', description: 'Site ID or name' } },
            required: ['id']
        },
        handler: async (args) => {
            return await api.get(`/sites/${args.id}/edge-cache`);
        }
    },
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