delete_plugin_metadata
Remove plugin metadata from the APISIX-MCP server by specifying the plugin name, ensuring streamlined backend configuration and resource management.
Instructions
Delete plugin metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | plugins name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "plugins name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}