wordpress_plugin_exists
Check if a specific plugin is installed on a WordPress site to verify availability before performing plugin-related operations.
Instructions
Check if a plugin is installed
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| plugin | Yes |
Input Schema (JSON Schema)
{
"properties": {
"plugin": {
"type": "string"
}
},
"required": [
"plugin"
],
"type": "object"
}