Apache Nutch · Capability

Apache Nutch REST API — Seed

Apache Nutch REST API — Seed. 2 operations. Lead operation: Apache Nutch List All Seed Lists. Self-contained Naftiko capability covering one Apache Nutch business surface.

Run with Naftiko Apache NutchSeed

What You Can Do

GET
Getseedlists — Apache Nutch List All Seed Lists
/v1/seed
POST
Createseedfile — Apache Nutch Create a Seed List File
/v1/seed/create

MCP Tools

apache-nutch-list-all-seed

Apache Nutch List All Seed Lists

read-only idempotent
apache-nutch-create-seed-list

Apache Nutch Create a Seed List File

read-only

Capability Spec

apache-nutch-seed.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apache Nutch REST API — Seed
  description: 'Apache Nutch REST API — Seed. 2 operations. Lead operation: Apache Nutch List All Seed Lists. Self-contained
    Naftiko capability covering one Apache Nutch business surface.'
  tags:
  - Apache Nutch
  - Seed
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APACHE_NUTCH_API_KEY: APACHE_NUTCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: apache-nutch-seed
    baseUri: ''
    description: Apache Nutch REST API — Seed business capability. Self-contained, no shared references.
    resources:
    - name: seed
      path: /seed/
      operations:
      - name: getseedlists
        method: GET
        description: Apache Nutch List All Seed Lists
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: seed-create
      path: /seed/create
      operations:
      - name: createseedfile
        method: POST
        description: Apache Nutch Create a Seed List File
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.APACHE_NUTCH_USER}}'
      password: '{{env.APACHE_NUTCH_PASS}}'
  exposes:
  - type: rest
    namespace: apache-nutch-seed-rest
    port: 8080
    description: REST adapter for Apache Nutch REST API — Seed. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/seed
      name: seed
      description: REST surface for seed.
      operations:
      - method: GET
        name: getseedlists
        description: Apache Nutch List All Seed Lists
        call: apache-nutch-seed.getseedlists
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/seed/create
      name: seed-create
      description: REST surface for seed-create.
      operations:
      - method: POST
        name: createseedfile
        description: Apache Nutch Create a Seed List File
        call: apache-nutch-seed.createseedfile
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: apache-nutch-seed-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apache Nutch REST API — Seed. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: apache-nutch-list-all-seed
      description: Apache Nutch List All Seed Lists
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: apache-nutch-seed.getseedlists
      outputParameters:
      - type: object
        mapping: $.
    - name: apache-nutch-create-seed-list
      description: Apache Nutch Create a Seed List File
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: apache-nutch-seed.createseedfile
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.