get_plugin_schema
Retrieve schema details for all plugins or a specific plugin by name in APISIX-MCP, enabling precise configuration and integration with supported plugin types.
Instructions
Get all plugins schema or a specific plugin schema by name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | plugins name | |
type | No | plugins type |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "plugins name",
"type": "string"
},
"type": {
"description": "plugins type",
"enum": [
"http",
"stream"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}