Netflix Eureka · Capability

Netflix Eureka REST API — Applications

Netflix Eureka REST API — Applications. 3 operations. Lead operation: Get all registered applications. Self-contained Naftiko capability covering one Netflix Eureka business surface.

Run with Naftiko Netflix EurekaApplications

What You Can Do

GET
Getallapplications — Get all registered applications
/v1/apps
GET
Getdelta — Get recent changes (delta)
/v1/apps/delta
GET
Getapplication — Get application by name
/v1/apps/{appid}

MCP Tools

get-all-registered-applications

Get all registered applications

read-only idempotent
get-recent-changes-delta

Get recent changes (delta)

read-only idempotent
get-application-name

Get application by name

read-only idempotent

Capability Spec

eureka-rest-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Netflix Eureka REST API — Applications
  description: 'Netflix Eureka REST API — Applications. 3 operations. Lead operation: Get all registered applications. Self-contained
    Naftiko capability covering one Netflix Eureka business surface.'
  tags:
  - Netflix Eureka
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    NETFLIX_EUREKA_API_KEY: NETFLIX_EUREKA_API_KEY
capability:
  consumes:
  - type: http
    namespace: eureka-rest-applications
    baseUri: http://localhost:8761/eureka
    description: Netflix Eureka REST API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: apps
      path: /apps
      operations:
      - name: getallapplications
        method: GET
        description: Get all registered applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: regions
          in: query
          type: string
          description: Comma-separated list of remote regions to include
    - name: apps-delta
      path: /apps/delta
      operations:
      - name: getdelta
        method: GET
        description: Get recent changes (delta)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: apps-appId
      path: /apps/{appId}
      operations:
      - name: getapplication
        method: GET
        description: Get application by name
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: appId
          in: path
          type: string
          description: Application name
          required: true
  exposes:
  - type: rest
    namespace: eureka-rest-applications-rest
    port: 8080
    description: REST adapter for Netflix Eureka REST API — Applications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/apps
      name: apps
      description: REST surface for apps.
      operations:
      - method: GET
        name: getallapplications
        description: Get all registered applications
        call: eureka-rest-applications.getallapplications
        with:
          regions: rest.regions
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/apps/delta
      name: apps-delta
      description: REST surface for apps-delta.
      operations:
      - method: GET
        name: getdelta
        description: Get recent changes (delta)
        call: eureka-rest-applications.getdelta
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/apps/{appid}
      name: apps-appid
      description: REST surface for apps-appId.
      operations:
      - method: GET
        name: getapplication
        description: Get application by name
        call: eureka-rest-applications.getapplication
        with:
          appId: rest.appId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: eureka-rest-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Netflix Eureka REST API — Applications. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-all-registered-applications
      description: Get all registered applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: eureka-rest-applications.getallapplications
      with:
        regions: tools.regions
      outputParameters:
      - type: object
        mapping: $.
    - name: get-recent-changes-delta
      description: Get recent changes (delta)
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: eureka-rest-applications.getdelta
      outputParameters:
      - type: object
        mapping: $.
    - name: get-application-name
      description: Get application by name
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: eureka-rest-applications.getapplication
      with:
        appId: tools.appId
      outputParameters:
      - type: object
        mapping: $.