Censys · Capability

Censys Asset Graph — Excluded Assets

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

Run with Naftiko CensysAsset GraphExcluded Assets

What You Can Do

GET
List excluded assets — Censys List Excluded Assets
/v1/api/asset-graphs/{graph_id}/excluded-assets
POST
Create excluded asset — Censys Create an Excluded Asset
/v1/api/asset-graphs/{graph_id}/excluded-assets
DELETE
Delete excluded asset — Censys Delete an Excluded Asset
/v1/api/asset-graphs/{graph_id}/excluded-assets/{excluded_asset_id}

MCP Tools

censys-list-excluded-assets

Censys List Excluded Assets

read-only idempotent
censys-create-excluded-asset

Censys Create an Excluded Asset

censys-delete-excluded-asset

Censys Delete an Excluded Asset

idempotent

Capability Spec

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