pressable_get_site
Retrieve detailed information about a specific WordPress site using its ID or name to manage site configurations and operations.
Instructions
Get details for a specific site by ID or name.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The site ID or site name |
Implementation Reference
- tools/sites.js:30-32 (handler)The handler implementation for the 'pressable_get_site' tool.
handler: async (args) => { return await api.get(`/sites/${args.id}`); } - tools/sites.js:23-29 (schema)The input schema for the 'pressable_get_site' tool.
inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'The site ID or site name' } }, required: ['id'] },