Azure API Management Self-Hosted Gateway — Gateway

Azure API Management Self-Hosted Gateway — Gateway. 2 operations. Lead operation: Proxy GET request through self-hosted gateway. Self-contained Naftiko capability covering one Microsoft Azure Api Management business surface.

Run with Naftiko Microsoft Azure Api ManagementGateway

What You Can Do

GET
Selfhostedgatewayproxyget — Proxy GET request through self-hosted gateway
/v1/{api-path}
POST
Selfhostedgatewayproxypost — Proxy POST request through self-hosted gateway
/v1/{api-path}

MCP Tools

proxy-get-request-through-self

Proxy GET request through self-hosted gateway

read-only idempotent
proxy-post-request-through-self

Proxy POST request through self-hosted gateway

Capability Spec

self-hosted-gateway-gateway.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Azure API Management Self-Hosted Gateway — Gateway
  description: 'Azure API Management Self-Hosted Gateway — Gateway. 2 operations. Lead operation: Proxy GET request through
    self-hosted gateway. Self-contained Naftiko capability covering one Microsoft Azure Api Management business surface.'
  tags:
  - Microsoft Azure Api Management
  - Gateway
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_AZURE_API_MANAGEMENT_API_KEY: MICROSOFT_AZURE_API_MANAGEMENT_API_KEY
capability:
  consumes:
  - type: http
    namespace: self-hosted-gateway-gateway
    baseUri: https://{gateway-hostname}
    description: Azure API Management Self-Hosted Gateway — Gateway business capability. Self-contained, no shared references.
    resources:
    - name: api-path
      path: /{api-path}
      operations:
      - name: selfhostedgatewayproxyget
        method: GET
        description: Proxy GET request through self-hosted gateway
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: api-path
          in: path
          type: string
          required: true
      - name: selfhostedgatewayproxypost
        method: POST
        description: Proxy POST request through self-hosted gateway
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: api-path
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: self-hosted-gateway-gateway-rest
    port: 8080
    description: REST adapter for Azure API Management Self-Hosted Gateway — Gateway. One Spectral-compliant resource per
      consumed operation, prefixed with /v1.
    resources:
    - path: /v1/{api-path}
      name: api-path
      description: REST surface for api-path.
      operations:
      - method: GET
        name: selfhostedgatewayproxyget
        description: Proxy GET request through self-hosted gateway
        call: self-hosted-gateway-gateway.selfhostedgatewayproxyget
        with:
          api-path: rest.api-path
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: selfhostedgatewayproxypost
        description: Proxy POST request through self-hosted gateway
        call: self-hosted-gateway-gateway.selfhostedgatewayproxypost
        with:
          api-path: rest.api-path
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: self-hosted-gateway-gateway-mcp
    port: 9090
    transport: http
    description: MCP adapter for Azure API Management Self-Hosted Gateway — Gateway. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: proxy-get-request-through-self
      description: Proxy GET request through self-hosted gateway
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: self-hosted-gateway-gateway.selfhostedgatewayproxyget
      with:
        api-path: tools.api-path
      outputParameters:
      - type: object
        mapping: $.
    - name: proxy-post-request-through-self
      description: Proxy POST request through self-hosted gateway
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: self-hosted-gateway-gateway.selfhostedgatewayproxypost
      with:
        api-path: tools.api-path
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.