Censys · Capability

Censys Asset Graph — Seeds

Censys Asset Graph — Seeds. 3 operation(s). Lead operation: Censys List Seeds. Self-contained Naftiko capability covering one Censys business surface.

Run with Naftiko CensysAsset GraphSeeds

What You Can Do

GET
List seeds — Censys List Seeds
/v1/api/asset-graphs/{graph_id}/seeds
POST
Create seed — Censys Create a Seed
/v1/api/asset-graphs/{graph_id}/seeds
DELETE
Delete seed — Censys Delete a Seed
/v1/api/asset-graphs/{graph_id}/seeds/{seed_id}

MCP Tools

censys-list-seeds

Censys List Seeds

read-only idempotent
censys-create-seed

Censys Create a Seed

censys-delete-seed

Censys Delete a Seed

idempotent

Capability Spec

asset-graph-seeds.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Censys Asset Graph — Seeds
  description: 'Censys Asset Graph — Seeds. 3 operation(s). Lead operation: Censys List Seeds. Self-contained Naftiko capability covering one Censys business surface.'
  tags:
    - Censys
    - Asset Graph
    - Seeds
  created: '2026-05-29'
  modified: '2026-05-29'
binds:
  - namespace: env
    keys:
      CENSYS_PERSONAL_ACCESS_TOKEN: CENSYS_PERSONAL_ACCESS_TOKEN
capability:
  consumes:
    - type: http
      namespace: asset-graph-seeds
      baseUri: https://graph.data.censys.io
      description: Censys Asset Graph — Seeds business capability. Self-contained, no shared references.
      authentication:
        type: bearer
        token: '{{env.CENSYS_PERSONAL_ACCESS_TOKEN}}'
      resources:
        - name: api-v1-asset-graphs-graph-id-seeds
          path: /api/v1/asset-graphs/{graph_id}/seeds
          operations:
            - name: list-seeds
              method: GET
              description: Censys List Seeds
              inputParameters:
                - name: X-Organization-ID
                  in: header
                  type: string
                  required: true
                  description: Censys organization ID
                - name: graph_id
                  in: path
                  type: string
                  required: true
                  description: Asset graph ID
                - name: page_token
                  in: query
                  type: string
                  required: false
                  description: Pagination token from a previous response
                - name: page_size
                  in: query
                  type: integer
                  required: false
                  description: Maximum number of results to return
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
            - name: create-seed
              method: POST
              description: Censys Create a Seed
              inputParameters:
                - name: X-Organization-ID
                  in: header
                  type: string
                  required: true
                  description: Censys organization ID
                - name: graph_id
                  in: path
                  type: string
                  required: true
                  description: Asset graph ID
                - name: body
                  in: body
                  type: object
                  required: true
                  description: Request body.
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: api-v1-asset-graphs-graph-id-seeds-seed-id
          path: /api/v1/asset-graphs/{graph_id}/seeds/{seed_id}
          operations:
            - name: delete-seed
              method: DELETE
              description: Censys Delete a Seed
              inputParameters:
                - name: X-Organization-ID
                  in: header
                  type: string
                  required: true
                  description: Censys organization ID
                - name: graph_id
                  in: path
                  type: string
                  required: true
                  description: Asset graph ID
                - name: seed_id
                  in: path
                  type: string
                  required: true
                  description: Seed identifier
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
  exposes:
    - type: rest
      namespace: asset-graph-seeds-rest
      port: 8080
      description: REST adapter for Censys Asset Graph — Seeds. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/api/asset-graphs/{graph_id}/seeds
          name: api-asset-graphs-graph-id-seeds
          description: REST surface for api-asset-graphs-graph-id-seeds.
          operations:
            - method: GET
              name: list-seeds
              description: Censys List Seeds
              call: asset-graph-seeds.list-seeds
              with:
                X-Organization-ID: rest.X-Organization-ID
                graph_id: rest.graph_id
                page_token: rest.page_token
                page_size: rest.page_size
              outputParameters:
                - type: object
                  mapping: $.
            - method: POST
              name: create-seed
              description: Censys Create a Seed
              call: asset-graph-seeds.create-seed
              with:
                X-Organization-ID: rest.X-Organization-ID
                graph_id: rest.graph_id
                body: rest.body
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/api/asset-graphs/{graph_id}/seeds/{seed_id}
          name: api-asset-graphs-graph-id-seeds-seed-id
          description: REST surface for api-asset-graphs-graph-id-seeds-seed-id.
          operations:
            - method: DELETE
              name: delete-seed
              description: Censys Delete a Seed
              call: asset-graph-seeds.delete-seed
              with:
                X-Organization-ID: rest.X-Organization-ID
                graph_id: rest.graph_id
                seed_id: rest.seed_id
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: asset-graph-seeds-mcp
      port: 9090
      transport: http
      description: MCP adapter for Censys Asset Graph — Seeds. One tool per consumed operation, routed inline through this capability's consumes block.
      tools:
        - name: censys-list-seeds
          description: Censys List Seeds
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: asset-graph-seeds.list-seeds
          with:
            X-Organization-ID: tools.X-Organization-ID
            graph_id: tools.graph_id
            page_token: tools.page_token
            page_size: tools.page_size
          outputParameters:
            - type: object
              mapping: $.
        - name: censys-create-seed
          description: Censys Create a Seed
          hints:
            readOnly: false
            destructive: false
            idempotent: false
          call: asset-graph-seeds.create-seed
          with:
            X-Organization-ID: tools.X-Organization-ID
            graph_id: tools.graph_id
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.
        - name: censys-delete-seed
          description: Censys Delete a Seed
          hints:
            readOnly: false
            destructive: true
            idempotent: true
          call: asset-graph-seeds.delete-seed
          with:
            X-Organization-ID: tools.X-Organization-ID
            graph_id: tools.graph_id
            seed_id: tools.seed_id
          outputParameters:
            - type: object
              mapping: $.