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
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Site ID or name |
Implementation Reference
- tools/cache.js:12-14 (handler)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`); } - tools/cache.js:7-11 (schema)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`); } },