AppDynamics · Capability

AppDynamics Controller REST API — Applications

AppDynamics Controller REST API — Applications. 2 operations. Lead operation: List all business applications. Self-contained Naftiko capability covering one Appdynamics business surface.

Run with Naftiko AppdynamicsApplications

What You Can Do

GET
Listapplications — List all business applications
/v1/applications
GET
Getapplication — Get a specific application
/v1/applications/{applicationid}

MCP Tools

list-all-business-applications

List all business applications

read-only idempotent
get-specific-application

Get a specific application

read-only idempotent

Capability Spec

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