pressable_list_mu_plugins
Retrieve must-use WordPress plugins for Pressable-hosted sites to manage essential functionality and automate site administration tasks.
Instructions
Get a list of must-use (MU) plugins for your account/sites.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | ||
| per_page | No |
Implementation Reference
- tools/mu_plugins.js:14-16 (handler)The handler function that executes the 'pressable_list_mu_plugins' tool by calling the API.
handler: async (args) => { return await api.get('/mu-plugins', args); } - tools/mu_plugins.js:7-13 (schema)Input schema validation for the 'pressable_list_mu_plugins' tool.
inputSchema: { type: 'object', properties: { page: { type: 'integer' }, per_page: { type: 'integer' } } }, - tools/mu_plugins.js:4-17 (registration)Registration object for the 'pressable_list_mu_plugins' tool.
{ name: 'pressable_list_mu_plugins', description: 'Get a list of must-use (MU) plugins for your account/sites.', inputSchema: { type: 'object', properties: { page: { type: 'integer' }, per_page: { type: 'integer' } } }, handler: async (args) => { return await api.get('/mu-plugins', args); } },