AppDynamics · Capability

AppDynamics Controller REST API — Nodes

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

Run with Naftiko AppdynamicsNodes

What You Can Do

GET
Listnodes — List nodes for an application
/v1/applications/{applicationid}/nodes
GET
Listtiernodes — List nodes for a specific tier
/v1/applications/{applicationid}/tiers/{tierid}/nodes

MCP Tools

list-nodes-application

List nodes for an application

read-only idempotent
list-nodes-specific-tier

List nodes for a specific tier

read-only idempotent

Capability Spec

controller-rest-nodes.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: AppDynamics Controller REST API — Nodes
  description: 'AppDynamics Controller REST API — Nodes. 2 operations. Lead operation: List nodes for an application. Self-contained
    Naftiko capability covering one Appdynamics business surface.'
  tags:
  - Appdynamics
  - Nodes
  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-nodes
    baseUri: https://{controller-host}/controller
    description: AppDynamics Controller REST API — Nodes business capability. Self-contained, no shared references.
    resources:
    - name: rest-applications-applicationId-nodes
      path: /rest/applications/{applicationId}/nodes
      operations:
      - name: listnodes
        method: GET
        description: List nodes for an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: rest-applications-applicationId-tiers-tierId-nodes
      path: /rest/applications/{applicationId}/tiers/{tierId}/nodes
      operations:
      - name: listtiernodes
        method: GET
        description: List nodes for 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-nodes-rest
    port: 8080
    description: REST adapter for AppDynamics Controller REST API — Nodes. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/applications/{applicationid}/nodes
      name: rest-applications-applicationid-nodes
      description: REST surface for rest-applications-applicationId-nodes.
      operations:
      - method: GET
        name: listnodes
        description: List nodes for an application
        call: controller-rest-nodes.listnodes
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{applicationid}/tiers/{tierid}/nodes
      name: rest-applications-applicationid-tiers-tierid-nodes
      description: REST surface for rest-applications-applicationId-tiers-tierId-nodes.
      operations:
      - method: GET
        name: listtiernodes
        description: List nodes for a specific tier
        call: controller-rest-nodes.listtiernodes
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: controller-rest-nodes-mcp
    port: 9090
    transport: http
    description: MCP adapter for AppDynamics Controller REST API — Nodes. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-nodes-application
      description: List nodes for an application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: controller-rest-nodes.listnodes
      outputParameters:
      - type: object
        mapping: $.
    - name: list-nodes-specific-tier
      description: List nodes for a specific tier
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: controller-rest-nodes.listtiernodes
      outputParameters:
      - type: object
        mapping: $.