AppDynamics · Capability

AppDynamics Controller REST API — Tiers

AppDynamics Controller REST API — Tiers. 2 operations. Lead operation: List tiers for an application. Self-contained Naftiko capability covering one Appdynamics business surface.

Run with Naftiko AppdynamicsTiers

What You Can Do

GET
Listtiers — List tiers for an application
/v1/applications/{applicationid}/tiers
GET
Gettier — Get a specific tier
/v1/applications/{applicationid}/tiers/{tierid}

MCP Tools

list-tiers-application

List tiers for an application

read-only idempotent
get-specific-tier

Get a specific tier

read-only idempotent

Capability Spec

controller-rest-tiers.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AppDynamics Controller REST API — Tiers
  description: 'AppDynamics Controller REST API — Tiers. 2 operations. Lead operation: List tiers for an application. Self-contained
    Naftiko capability covering one Appdynamics business surface.'
  tags:
  - Appdynamics
  - Tiers
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPDYNAMICS_API_KEY: APPDYNAMICS_API_KEY
capability:
  consumes:
  - type: http
    namespace: controller-rest-tiers
    baseUri: https://{controller-host}/controller
    description: AppDynamics Controller REST API — Tiers business capability. Self-contained, no shared references.
    resources:
    - name: rest-applications-applicationId-tiers
      path: /rest/applications/{applicationId}/tiers
      operations:
      - name: listtiers
        method: GET
        description: List tiers for an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: rest-applications-applicationId-tiers-tierId
      path: /rest/applications/{applicationId}/tiers/{tierId}
      operations:
      - name: gettier
        method: GET
        description: Get a specific tier
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.APPDYNAMICS_API_KEY}}'
  exposes:
  - type: rest
    namespace: controller-rest-tiers-rest
    port: 8080
    description: REST adapter for AppDynamics Controller REST API — Tiers. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/applications/{applicationid}/tiers
      name: rest-applications-applicationid-tiers
      description: REST surface for rest-applications-applicationId-tiers.
      operations:
      - method: GET
        name: listtiers
        description: List tiers for an application
        call: controller-rest-tiers.listtiers
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{applicationid}/tiers/{tierid}
      name: rest-applications-applicationid-tiers-tierid
      description: REST surface for rest-applications-applicationId-tiers-tierId.
      operations:
      - method: GET
        name: gettier
        description: Get a specific tier
        call: controller-rest-tiers.gettier
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: controller-rest-tiers-mcp
    port: 9090
    transport: http
    description: MCP adapter for AppDynamics Controller REST API — Tiers. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-tiers-application
      description: List tiers for an application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: controller-rest-tiers.listtiers
      outputParameters:
      - type: object
        mapping: $.
    - name: get-specific-tier
      description: Get a specific tier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: controller-rest-tiers.gettier
      outputParameters:
      - type: object
        mapping: $.