create_or_update_plugin_metadata
Manage plugin configurations by creating or updating metadata in the APISIX-MCP server, enabling control over plugin functionality and behavior.
Instructions
Create or update plugin metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
metadata | Yes | plugins configuration | |
name | Yes | plugins name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"metadata": {
"additionalProperties": true,
"description": "plugins configuration",
"properties": {
"_meta": {
"additionalProperties": false,
"properties": {
"disable": {
"default": false,
"description": "control whether the plugin is enabled",
"type": "boolean"
}
},
"type": "object"
}
},
"type": "object"
},
"name": {
"description": "plugins name",
"type": "string"
}
},
"required": [
"name",
"metadata"
],
"type": "object"
}