get_plugin_metadata
Retrieve metadata for a specific plugin from the APISIX-MCP server to enable plugin integration via the APISIX Admin API.
Instructions
Get metadata for a specific plugin
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"
}