Apache Giraph · Capability

Apache Giraph Job Monitoring API — Job Management

Apache Giraph Job Monitoring API — Job Management. 2 operations. Lead operation: Apache Giraph List Graph Processing Jobs. Self-contained Naftiko capability covering one Apache Giraph business surface.

Run with Naftiko Apache GiraphJob Management

What You Can Do

GET
Listgiraphjobs — Apache Giraph List Graph Processing Jobs
/v1/ws/v1/cluster/apps
GET
Getgiraphjob — Apache Giraph Get Graph Processing Job
/v1/ws/v1/cluster/apps/{appid}

MCP Tools

apache-giraph-list-graph-processing

Apache Giraph List Graph Processing Jobs

read-only idempotent
apache-giraph-get-graph-processing

Apache Giraph Get Graph Processing Job

read-only idempotent

Capability Spec

job-job-management.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache Giraph Job Monitoring API — Job Management
  description: 'Apache Giraph Job Monitoring API — Job Management. 2 operations. Lead operation: Apache Giraph List Graph
    Processing Jobs. Self-contained Naftiko capability covering one Apache Giraph business surface.'
  tags:
  - Apache Giraph
  - Job Management
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_GIRAPH_API_KEY: APACHE_GIRAPH_API_KEY
capability:
  consumes:
  - type: http
    namespace: job-job-management
    baseUri: http://localhost:8088
    description: Apache Giraph Job Monitoring API — Job Management business capability. Self-contained, no shared references.
    resources:
    - name: ws-v1-cluster-apps
      path: /ws/v1/cluster/apps
      operations:
      - name: listgiraphjobs
        method: GET
        description: Apache Giraph List Graph Processing Jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: applicationTypes
          in: query
          type: string
          description: Filter by application type (e.g., MAPREDUCE for Giraph jobs)
        - name: states
          in: query
          type: string
          description: Filter by job state (RUNNING, FINISHED, FAILED, KILLED)
    - name: ws-v1-cluster-apps-appId
      path: /ws/v1/cluster/apps/{appId}
      operations:
      - name: getgiraphjob
        method: GET
        description: Apache Giraph Get Graph Processing Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: appId
          in: path
          type: string
          description: YARN application ID for the Giraph job
          required: true
  exposes:
  - type: rest
    namespace: job-job-management-rest
    port: 8080
    description: REST adapter for Apache Giraph Job Monitoring API — Job Management. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/ws/v1/cluster/apps
      name: ws-v1-cluster-apps
      description: REST surface for ws-v1-cluster-apps.
      operations:
      - method: GET
        name: listgiraphjobs
        description: Apache Giraph List Graph Processing Jobs
        call: job-job-management.listgiraphjobs
        with:
          applicationTypes: rest.applicationTypes
          states: rest.states
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ws/v1/cluster/apps/{appid}
      name: ws-v1-cluster-apps-appid
      description: REST surface for ws-v1-cluster-apps-appId.
      operations:
      - method: GET
        name: getgiraphjob
        description: Apache Giraph Get Graph Processing Job
        call: job-job-management.getgiraphjob
        with:
          appId: rest.appId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: job-job-management-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache Giraph Job Monitoring API — Job Management. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: apache-giraph-list-graph-processing
      description: Apache Giraph List Graph Processing Jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: job-job-management.listgiraphjobs
      with:
        applicationTypes: tools.applicationTypes
        states: tools.states
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-giraph-get-graph-processing
      description: Apache Giraph Get Graph Processing Job
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: job-job-management.getgiraphjob
      with:
        appId: tools.appId
      outputParameters:
      - type: object
        mapping: $.