RTX · Capability

RTX Logistics Intelligence

Workflow capability for defense logistics intelligence using the RTX EAGLE platform. Combines data source management, analytics job monitoring, and report generation for logistics support analysis (LSA) workflows. Serves logistics engineers, program managers, and defense operations teams managing the lifecycle of complex defense systems.

Run with Naftiko DefenseLogisticsIntelligenceAnalyticsRTXRaytheonGovernment

What You Can Do

GET
List data sources — List all configured intelligence data sources
/v1/data-sources
GET
List analytics — List analytics jobs and statuses
/v1/analytics
GET
List reports — List generated intelligence reports
/v1/reports

MCP Tools

list-data-sources

List all intelligence and logistics data sources configured in the RTX EAGLE platform

read-only
list-analytics-jobs

List all analytics jobs and their current status in RTX EAGLE

read-only
list-reports

List generated intelligence and logistics reports available for review

read-only

APIs Used

eagle-api

Capability Spec

logistics-intelligence.yaml Raw ↑
naftiko: "1.0.0-alpha1"

info:
  label: "RTX Logistics Intelligence"
  description: >-
    Workflow capability for defense logistics intelligence using the RTX EAGLE
    platform. Combines data source management, analytics job monitoring, and
    report generation for logistics support analysis (LSA) workflows. Serves
    logistics engineers, program managers, and defense operations teams managing
    the lifecycle of complex defense systems.
  tags:
    - Defense
    - Logistics
    - Intelligence
    - Analytics
    - RTX
    - Raytheon
    - Government
  created: "2026-05-02"
  modified: "2026-05-02"

binds:
  - namespace: env
    keys:
      RTX_EAGLE_API_TOKEN: RTX_EAGLE_API_TOKEN

capability:
  consumes:
    - import: eagle-api
      location: ./shared/eagle-api.yaml

  exposes:
    - type: rest
      port: 8080
      namespace: logistics-intelligence-api
      description: "Unified REST API for RTX EAGLE logistics intelligence workflows."
      resources:
        - path: /v1/data-sources
          name: data-sources
          description: "Intelligence and logistics data sources"
          operations:
            - method: GET
              name: list-data-sources
              description: "List all configured intelligence data sources"
              call: "eagle-api.list-data-sources"
              outputParameters:
                - type: object
                  mapping: "$."
        - path: /v1/analytics
          name: analytics
          description: "Analytics jobs for logistics data"
          operations:
            - method: GET
              name: list-analytics
              description: "List analytics jobs and statuses"
              call: "eagle-api.list-analytics-jobs"
              outputParameters:
                - type: object
                  mapping: "$."
        - path: /v1/reports
          name: reports
          description: "Intelligence and logistics reports"
          operations:
            - method: GET
              name: list-reports
              description: "List generated intelligence reports"
              call: "eagle-api.list-reports"
              outputParameters:
                - type: object
                  mapping: "$."

    - type: mcp
      port: 9090
      namespace: logistics-intelligence-mcp
      transport: http
      description: "MCP server for AI-assisted RTX EAGLE logistics intelligence workflows."
      tools:
        - name: list-data-sources
          description: "List all intelligence and logistics data sources configured in the RTX EAGLE platform"
          hints:
            readOnly: true
            openWorld: false
          call: "eagle-api.list-data-sources"
          outputParameters:
            - type: object
              mapping: "$."
        - name: list-analytics-jobs
          description: "List all analytics jobs and their current status in RTX EAGLE"
          hints:
            readOnly: true
            openWorld: false
          call: "eagle-api.list-analytics-jobs"
          outputParameters:
            - type: object
              mapping: "$."
        - name: list-reports
          description: "List generated intelligence and logistics reports available for review"
          hints:
            readOnly: true
            openWorld: false
          call: "eagle-api.list-reports"
          outputParameters:
            - type: object
              mapping: "$."