New Relic · Capability

New Relic — Mobile

New Relic — Mobile. 4 operations. Lead operation: New Relic Get Mobile Applications. Self-contained Naftiko capability covering one New Relic business surface.

Run with Naftiko New RelicMobile

What You Can Do

GET
Getmobileapplications — New Relic Get Mobile Applications
/v1/mobile-applications-json
GET
Getmobileapplicationsid — New Relic Get Mobile Applications
/v1/mobile-applications/id-json
GET
Getmobileapplicationsmobileapplicationidmetrics — New Relic Get Mobile Applications Mobile Application Metrics
/v1/mobile-applications/{mobile-application-id}/metrics-json
GET
Getmobileapplicationsmobileapplicationidmetricsdata — New Relic Get Mobile Applications Mobile Application Metrics Data
/v1/mobile-applications/{mobile-application-id}/metrics/data-json

MCP Tools

new-relic-get-mobile-applications

New Relic Get Mobile Applications

read-only idempotent
new-relic-get-mobile-applications-2

New Relic Get Mobile Applications

read-only idempotent
new-relic-get-mobile-applications-3

New Relic Get Mobile Applications Mobile Application Metrics

read-only idempotent
new-relic-get-mobile-applications-4

New Relic Get Mobile Applications Mobile Application Metrics Data

read-only idempotent

Capability Spec

new-relic-mobile.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: New Relic — Mobile
  description: 'New Relic — Mobile. 4 operations. Lead operation: New Relic Get Mobile Applications. Self-contained Naftiko
    capability covering one New Relic business surface.'
  tags:
  - New Relic
  - Mobile
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NEW_RELIC_API_KEY: NEW_RELIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: new-relic-mobile
    baseUri: https://api.newrelic.com/v2
    description: New Relic — Mobile business capability. Self-contained, no shared references.
    resources:
    - name: mobile_applications.json
      path: /mobile_applications.json
      operations:
      - name: getmobileapplications
        method: GET
        description: New Relic Get Mobile Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: mobile_applications-id}.json
      path: /mobile_applications/{id}.json
      operations:
      - name: getmobileapplicationsid
        method: GET
        description: New Relic Get Mobile Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          description: Mobile Application ID
          required: true
    - name: mobile_applications-mobile_application_id-metrics.json
      path: /mobile_applications/{mobile_application_id}/metrics.json
      operations:
      - name: getmobileapplicationsmobileapplicationidmetrics
        method: GET
        description: New Relic Get Mobile Applications Mobile Application Metrics
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: mobile_application_id
          in: path
          type: integer
          description: Mobile application ID
          required: true
        - name: name
          in: query
          type: string
          description: Filter metrics by name
        - name: page
          in: query
          type: integer
          description: Pagination index (will be deprecated)
        - name: cursor
          in: query
          type: string
          description: Cursor for next page (replacing page param)
    - name: mobile_applications-mobile_application_id-metrics-data.json
      path: /mobile_applications/{mobile_application_id}/metrics/data.json
      operations:
      - name: getmobileapplicationsmobileapplicationidmetricsdata
        method: GET
        description: New Relic Get Mobile Applications Mobile Application Metrics Data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: mobile_application_id
          in: path
          type: integer
          description: Mobile application ID
          required: true
        - name: names
          in: query
          type: array
          description: Retrieve specific metrics by name
          required: true
        - name: values
          in: query
          type: array
          description: Retrieve specific metric values
        - name: from
          in: query
          type: string
          description: Retrieve metrics after this time
        - name: to
          in: query
          type: string
          description: Retrieve metrics before this time
        - name: period
          in: query
          type: integer
          description: Period of timeslices in seconds
        - name: summarize
          in: query
          type: boolean
          description: Summarize the data
        - name: raw
          in: query
          type: boolean
          description: Return unformatted raw values
    authentication:
      type: apikey
      key: Api-Key
      value: '{{env.NEW_RELIC_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: new-relic-mobile-rest
    port: 8080
    description: REST adapter for New Relic — Mobile. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/mobile-applications-json
      name: mobile-applications-json
      description: REST surface for mobile_applications.json.
      operations:
      - method: GET
        name: getmobileapplications
        description: New Relic Get Mobile Applications
        call: new-relic-mobile.getmobileapplications
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/mobile-applications/id-json
      name: mobile-applications-id-json
      description: REST surface for mobile_applications-id}.json.
      operations:
      - method: GET
        name: getmobileapplicationsid
        description: New Relic Get Mobile Applications
        call: new-relic-mobile.getmobileapplicationsid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/mobile-applications/{mobile-application-id}/metrics-json
      name: mobile-applications-mobile-application-id-metrics-json
      description: REST surface for mobile_applications-mobile_application_id-metrics.json.
      operations:
      - method: GET
        name: getmobileapplicationsmobileapplicationidmetrics
        description: New Relic Get Mobile Applications Mobile Application Metrics
        call: new-relic-mobile.getmobileapplicationsmobileapplicationidmetrics
        with:
          mobile_application_id: rest.mobile_application_id
          name: rest.name
          page: rest.page
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/mobile-applications/{mobile-application-id}/metrics/data-json
      name: mobile-applications-mobile-application-id-metrics-data-json
      description: REST surface for mobile_applications-mobile_application_id-metrics-data.json.
      operations:
      - method: GET
        name: getmobileapplicationsmobileapplicationidmetricsdata
        description: New Relic Get Mobile Applications Mobile Application Metrics Data
        call: new-relic-mobile.getmobileapplicationsmobileapplicationidmetricsdata
        with:
          mobile_application_id: rest.mobile_application_id
          names: rest.names
          values: rest.values
          from: rest.from
          to: rest.to
          period: rest.period
          summarize: rest.summarize
          raw: rest.raw
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: new-relic-mobile-mcp
    port: 9090
    transport: http
    description: MCP adapter for New Relic — Mobile. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: new-relic-get-mobile-applications
      description: New Relic Get Mobile Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: new-relic-mobile.getmobileapplications
      outputParameters:
      - type: object
        mapping: $.
    - name: new-relic-get-mobile-applications-2
      description: New Relic Get Mobile Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: new-relic-mobile.getmobileapplicationsid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: new-relic-get-mobile-applications-3
      description: New Relic Get Mobile Applications Mobile Application Metrics
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: new-relic-mobile.getmobileapplicationsmobileapplicationidmetrics
      with:
        mobile_application_id: tools.mobile_application_id
        name: tools.name
        page: tools.page
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.
    - name: new-relic-get-mobile-applications-4
      description: New Relic Get Mobile Applications Mobile Application Metrics Data
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: new-relic-mobile.getmobileapplicationsmobileapplicationidmetricsdata
      with:
        mobile_application_id: tools.mobile_application_id
        names: tools.names
        values: tools.values
        from: tools.from
        to: tools.to
        period: tools.period
        summarize: tools.summarize
        raw: tools.raw
      outputParameters:
      - type: object
        mapping: $.