Tufin · Capability

Tufin SecureTrack REST API — Objects

Tufin SecureTrack REST API — Objects. 2 operations. Lead operation: Get Network Objects. Self-contained Naftiko capability covering one Tufin business surface.

Run with Naftiko TufinObjects

What You Can Do

GET
Getnetworkobjects — Get Network Objects
/v1/network-objects
GET
Getservices — Get Services
/v1/services

MCP Tools

get-network-objects

Get Network Objects

read-only idempotent
get-services

Get Services

read-only idempotent

Capability Spec

securetrack-objects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Tufin SecureTrack REST API — Objects
  description: 'Tufin SecureTrack REST API — Objects. 2 operations. Lead operation: Get Network Objects. Self-contained Naftiko
    capability covering one Tufin business surface.'
  tags:
  - Tufin
  - Objects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TUFIN_API_KEY: TUFIN_API_KEY
capability:
  consumes:
  - type: http
    namespace: securetrack-objects
    baseUri: https://{tos_host}/securetrack/api
    description: Tufin SecureTrack REST API — Objects business capability. Self-contained, no shared references.
    resources:
    - name: network_objects
      path: /network_objects
      operations:
      - name: getnetworkobjects
        method: GET
        description: Get Network Objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: string
          description: Filter by object name
        - name: ip
          in: query
          type: string
          description: Filter by IP address
        - name: type
          in: query
          type: string
          description: Filter by object type (host, range, group)
    - name: services
      path: /services
      operations:
      - name: getservices
        method: GET
        description: Get Services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: string
          description: Filter by service name
        - name: port
          in: query
          type: string
          description: Filter by port number
    authentication:
      type: basic
      username: '{{env.TUFIN_USER}}'
      password: '{{env.TUFIN_PASS}}'
  exposes:
  - type: rest
    namespace: securetrack-objects-rest
    port: 8080
    description: REST adapter for Tufin SecureTrack REST API — Objects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/network-objects
      name: network-objects
      description: REST surface for network_objects.
      operations:
      - method: GET
        name: getnetworkobjects
        description: Get Network Objects
        call: securetrack-objects.getnetworkobjects
        with:
          name: rest.name
          ip: rest.ip
          type: rest.type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/services
      name: services
      description: REST surface for services.
      operations:
      - method: GET
        name: getservices
        description: Get Services
        call: securetrack-objects.getservices
        with:
          name: rest.name
          port: rest.port
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: securetrack-objects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Tufin SecureTrack REST API — Objects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-network-objects
      description: Get Network Objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: securetrack-objects.getnetworkobjects
      with:
        name: tools.name
        ip: tools.ip
        type: tools.type
      outputParameters:
      - type: object
        mapping: $.
    - name: get-services
      description: Get Services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: securetrack-objects.getservices
      with:
        name: tools.name
        port: tools.port
      outputParameters:
      - type: object
        mapping: $.