Censys · Capability

Censys Asset Graph — Asset Graphs

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

Run with Naftiko CensysAsset GraphAsset Graphs

What You Can Do

GET
List asset graphs — Censys List Asset Graphs
/v1/api/asset-graphs
POST
Create asset graph — Censys Create an Asset Graph
/v1/api/asset-graphs
DELETE
Delete asset graph — Censys Delete an Asset Graph
/v1/api/asset-graphs/{id}
GET
Get asset graph — Censys Get an Asset Graph
/v1/api/asset-graphs/{id}

MCP Tools

censys-list-asset-graphs

Censys List Asset Graphs

read-only idempotent
censys-create-asset-graph

Censys Create an Asset Graph

censys-delete-asset-graph

Censys Delete an Asset Graph

idempotent
censys-get-asset-graph

Censys Get an Asset Graph

read-only idempotent

Capability Spec

asset-graph-asset-graphs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Censys Asset Graph — Asset Graphs
  description: 'Censys Asset Graph — Asset Graphs. 4 operation(s). Lead operation: Censys List Asset Graphs. Self-contained Naftiko capability covering one Censys business surface.'
  tags:
    - Censys
    - Asset Graph
    - Asset Graphs
  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-asset-graphs
      baseUri: https://graph.data.censys.io
      description: Censys Asset Graph — Asset Graphs business capability. Self-contained, no shared references.
      authentication:
        type: bearer
        token: '{{env.CENSYS_PERSONAL_ACCESS_TOKEN}}'
      resources:
        - name: api-v1-asset-graphs
          path: /api/v1/asset-graphs
          operations:
            - name: list-asset-graphs
              method: GET
              description: Censys List Asset Graphs
              inputParameters:
                - name: X-Organization-ID
                  in: header
                  type: string
                  required: true
                  description: Censys organization 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-asset-graph
              method: POST
              description: Censys Create an Asset Graph
              inputParameters:
                - name: X-Organization-ID
                  in: header
                  type: string
                  required: true
                  description: Censys organization 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-id
          path: /api/v1/asset-graphs/{id}
          operations:
            - name: delete-asset-graph
              method: DELETE
              description: Censys Delete an Asset Graph
              inputParameters:
                - name: X-Organization-ID
                  in: header
                  type: string
                  required: true
                  description: Censys organization ID
                - name: id
                  in: path
                  type: string
                  required: true
                  description: Asset graph ID
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
            - name: get-asset-graph
              method: GET
              description: Censys Get an Asset Graph
              inputParameters:
                - name: X-Organization-ID
                  in: header
                  type: string
                  required: true
                  description: Censys organization ID
                - name: id
                  in: path
                  type: string
                  required: true
                  description: Asset graph ID
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
  exposes:
    - type: rest
      namespace: asset-graph-asset-graphs-rest
      port: 8080
      description: REST adapter for Censys Asset Graph — Asset Graphs. One Spectral-compliant resource per consumed operation, prefixed with /v1.
      resources:
        - path: /v1/api/asset-graphs
          name: api-asset-graphs
          description: REST surface for api-asset-graphs.
          operations:
            - method: GET
              name: list-asset-graphs
              description: Censys List Asset Graphs
              call: asset-graph-asset-graphs.list-asset-graphs
              with:
                X-Organization-ID: rest.X-Organization-ID
                page_token: rest.page_token
                page_size: rest.page_size
              outputParameters:
                - type: object
                  mapping: $.
            - method: POST
              name: create-asset-graph
              description: Censys Create an Asset Graph
              call: asset-graph-asset-graphs.create-asset-graph
              with:
                X-Organization-ID: rest.X-Organization-ID
                body: rest.body
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/api/asset-graphs/{id}
          name: api-asset-graphs-id
          description: REST surface for api-asset-graphs-id.
          operations:
            - method: DELETE
              name: delete-asset-graph
              description: Censys Delete an Asset Graph
              call: asset-graph-asset-graphs.delete-asset-graph
              with:
                X-Organization-ID: rest.X-Organization-ID
                id: rest.id
              outputParameters:
                - type: object
                  mapping: $.
            - method: GET
              name: get-asset-graph
              description: Censys Get an Asset Graph
              call: asset-graph-asset-graphs.get-asset-graph
              with:
                X-Organization-ID: rest.X-Organization-ID
                id: rest.id
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: asset-graph-asset-graphs-mcp
      port: 9090
      transport: http
      description: MCP adapter for Censys Asset Graph — Asset Graphs. One tool per consumed operation, routed inline through this capability's consumes block.
      tools:
        - name: censys-list-asset-graphs
          description: Censys List Asset Graphs
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: asset-graph-asset-graphs.list-asset-graphs
          with:
            X-Organization-ID: tools.X-Organization-ID
            page_token: tools.page_token
            page_size: tools.page_size
          outputParameters:
            - type: object
              mapping: $.
        - name: censys-create-asset-graph
          description: Censys Create an Asset Graph
          hints:
            readOnly: false
            destructive: false
            idempotent: false
          call: asset-graph-asset-graphs.create-asset-graph
          with:
            X-Organization-ID: tools.X-Organization-ID
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.
        - name: censys-delete-asset-graph
          description: Censys Delete an Asset Graph
          hints:
            readOnly: false
            destructive: true
            idempotent: true
          call: asset-graph-asset-graphs.delete-asset-graph
          with:
            X-Organization-ID: tools.X-Organization-ID
            id: tools.id
          outputParameters:
            - type: object
              mapping: $.
        - name: censys-get-asset-graph
          description: Censys Get an Asset Graph
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: asset-graph-asset-graphs.get-asset-graph
          with:
            X-Organization-ID: tools.X-Organization-ID
            id: tools.id
          outputParameters:
            - type: object
              mapping: $.