Apache APISIX · Capability

Apache APISIX Control API — Schema

Apache APISIX Control API — Schema. 2 operations. Lead operation: Apache APISIX Get APISIX JSON Schema. Self-contained Naftiko capability covering one Apache Apisix business surface.

Run with Naftiko Apache ApisixSchema

What You Can Do

GET
Getschema — Apache APISIX Get APISIX JSON Schema
/v1/v1/schema
GET
Getpluginschema — Apache APISIX Get a Specific Plugin Schema
/v1/v1/schema/plugins/{plugin-name}

MCP Tools

apache-apisix-get-apisix-json

Apache APISIX Get APISIX JSON Schema

read-only idempotent
apache-apisix-get-specific-plugin

Apache APISIX Get a Specific Plugin Schema

read-only idempotent

Capability Spec

control-schema.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache APISIX Control API — Schema
  description: 'Apache APISIX Control API — Schema. 2 operations. Lead operation: Apache APISIX Get APISIX JSON Schema. Self-contained
    Naftiko capability covering one Apache Apisix business surface.'
  tags:
  - Apache Apisix
  - Schema
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_APISIX_API_KEY: APACHE_APISIX_API_KEY
capability:
  consumes:
  - type: http
    namespace: control-schema
    baseUri: http://127.0.0.1:9090
    description: Apache APISIX Control API — Schema business capability. Self-contained, no shared references.
    resources:
    - name: v1-schema
      path: /v1/schema
      operations:
      - name: getschema
        method: GET
        description: Apache APISIX Get APISIX JSON Schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-schema-plugins-plugin_name
      path: /v1/schema/plugins/{plugin_name}
      operations:
      - name: getpluginschema
        method: GET
        description: Apache APISIX Get a Specific Plugin Schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: plugin_name
          in: path
          type: string
          description: The name of the plugin.
          required: true
  exposes:
  - type: rest
    namespace: control-schema-rest
    port: 8080
    description: REST adapter for Apache APISIX Control API — Schema. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/schema
      name: v1-schema
      description: REST surface for v1-schema.
      operations:
      - method: GET
        name: getschema
        description: Apache APISIX Get APISIX JSON Schema
        call: control-schema.getschema
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/schema/plugins/{plugin-name}
      name: v1-schema-plugins-plugin-name
      description: REST surface for v1-schema-plugins-plugin_name.
      operations:
      - method: GET
        name: getpluginschema
        description: Apache APISIX Get a Specific Plugin Schema
        call: control-schema.getpluginschema
        with:
          plugin_name: rest.plugin_name
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: control-schema-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache APISIX Control API — Schema. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apache-apisix-get-apisix-json
      description: Apache APISIX Get APISIX JSON Schema
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: control-schema.getschema
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-apisix-get-specific-plugin
      description: Apache APISIX Get a Specific Plugin Schema
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: control-schema.getpluginschema
      with:
        plugin_name: tools.plugin_name
      outputParameters:
      - type: object
        mapping: $.