llamaindex · Capability

LlamaIndex LlamaParse API — Jobs

LlamaIndex LlamaParse API — Jobs. 3 operations. Lead operation: List parse jobs. Self-contained Naftiko capability covering one Llamaindex business surface.

Run with Naftiko LlamaindexJobs

What You Can Do

GET
Listparsejobs — List parse jobs
/v1/parse/jobs
GET
Getparsejob — Get parse job status
/v1/parse/jobs/{jobid}
GET
Getparsejobresult — Get parse job result
/v1/parse/jobs/{jobid}/result

MCP Tools

list-parse-jobs

List parse jobs

read-only idempotent
get-parse-job-status

Get parse job status

read-only idempotent
get-parse-job-result

Get parse job result

read-only idempotent

Capability Spec

llamaparse-jobs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: LlamaIndex LlamaParse API — Jobs
  description: 'LlamaIndex LlamaParse API — Jobs. 3 operations. Lead operation: List parse jobs. Self-contained Naftiko capability
    covering one Llamaindex business surface.'
  tags:
  - Llamaindex
  - Jobs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    LLAMAINDEX_API_KEY: LLAMAINDEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: llamaparse-jobs
    baseUri: https://api.cloud.llamaindex.ai/api/v2
    description: LlamaIndex LlamaParse API — Jobs business capability. Self-contained, no shared references.
    resources:
    - name: parse-jobs
      path: /parse/jobs
      operations:
      - name: listparsejobs
        method: GET
        description: List parse jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: project_id
          in: query
          type: string
          description: Filter jobs by project identifier.
        - name: limit
          in: query
          type: integer
          description: Maximum number of jobs to return.
        - name: offset
          in: query
          type: integer
          description: Number of jobs to skip for pagination.
    - name: parse-jobs-jobId
      path: /parse/jobs/{jobId}
      operations:
      - name: getparsejob
        method: GET
        description: Get parse job status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: expand
          in: query
          type: string
          description: Comma-separated list of result fields to include in the response. Controls whether text, markdown,
            structured JSON, or metadata is returned with the job status.
    - name: parse-jobs-jobId-result
      path: /parse/jobs/{jobId}/result
      operations:
      - name: getparsejobresult
        method: GET
        description: Get parse job result
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.LLAMAINDEX_API_KEY}}'
  exposes:
  - type: rest
    namespace: llamaparse-jobs-rest
    port: 8080
    description: REST adapter for LlamaIndex LlamaParse API — Jobs. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/parse/jobs
      name: parse-jobs
      description: REST surface for parse-jobs.
      operations:
      - method: GET
        name: listparsejobs
        description: List parse jobs
        call: llamaparse-jobs.listparsejobs
        with:
          project_id: rest.project_id
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/parse/jobs/{jobid}
      name: parse-jobs-jobid
      description: REST surface for parse-jobs-jobId.
      operations:
      - method: GET
        name: getparsejob
        description: Get parse job status
        call: llamaparse-jobs.getparsejob
        with:
          expand: rest.expand
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/parse/jobs/{jobid}/result
      name: parse-jobs-jobid-result
      description: REST surface for parse-jobs-jobId-result.
      operations:
      - method: GET
        name: getparsejobresult
        description: Get parse job result
        call: llamaparse-jobs.getparsejobresult
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: llamaparse-jobs-mcp
    port: 9090
    transport: http
    description: MCP adapter for LlamaIndex LlamaParse API — Jobs. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-parse-jobs
      description: List parse jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: llamaparse-jobs.listparsejobs
      with:
        project_id: tools.project_id
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: get-parse-job-status
      description: Get parse job status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: llamaparse-jobs.getparsejob
      with:
        expand: tools.expand
      outputParameters:
      - type: object
        mapping: $.
    - name: get-parse-job-result
      description: Get parse job result
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: llamaparse-jobs.getparsejobresult
      outputParameters:
      - type: object
        mapping: $.