pressable_get_account_details
Retrieve account profile and settings information for WordPress site management through the Pressable API.
Instructions
Retrieve account profile and settings information.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- tools/account.js:8-10 (handler)The handler implementation for the pressable_get_account_details tool, which makes a GET request to the /account endpoint.
handler: async () => { return await api.get('/account'); } - tools/account.js:4-11 (registration)The definition and registration of the pressable_get_account_details tool within the accountTools array.
{ name: 'pressable_get_account_details', description: 'Retrieve account profile and settings information.', inputSchema: { type: 'object', properties: {} }, handler: async () => { return await api.get('/account'); } },