Palo Alto Networks · Capability

Palo Alto Networks Strata Cloud Manager API — SecurityRules

Palo Alto Networks Strata Cloud Manager API — SecurityRules. 5 operations. Lead operation: Palo Alto Networks List Security Rules. Self-contained Naftiko capability covering one Palo Alto Networks business surface.

Run with Naftiko Palo Alto NetworksSecurityRules

What You Can Do

GET
Listsecurityrules — Palo Alto Networks List Security Rules
/v1/sse/config/v1/security-rules
POST
Createsecurityrule — Palo Alto Networks Create Security Rule
/v1/sse/config/v1/security-rules
GET
Getsecurityrule — Palo Alto Networks Get Security Rule
/v1/sse/config/v1/security-rules/{id}
PUT
Updatesecurityrule — Palo Alto Networks Update Security Rule
/v1/sse/config/v1/security-rules/{id}
DELETE
Deletesecurityrule — Palo Alto Networks Delete Security Rule
/v1/sse/config/v1/security-rules/{id}

MCP Tools

palo-alto-networks-list-security

Palo Alto Networks List Security Rules

read-only idempotent
palo-alto-networks-create-security

Palo Alto Networks Create Security Rule

palo-alto-networks-get-security

Palo Alto Networks Get Security Rule

read-only idempotent
palo-alto-networks-update-security

Palo Alto Networks Update Security Rule

idempotent
palo-alto-networks-delete-security

Palo Alto Networks Delete Security Rule

idempotent

Capability Spec

palo-alto-strata-cloud-manager-securityrules.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Palo Alto Networks Strata Cloud Manager API — SecurityRules
  description: 'Palo Alto Networks Strata Cloud Manager API — SecurityRules. 5 operations. Lead operation: Palo Alto Networks
    List Security Rules. Self-contained Naftiko capability covering one Palo Alto Networks business surface.'
  tags:
  - Palo Alto Networks
  - SecurityRules
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    PALO_ALTO_NETWORKS_API_KEY: PALO_ALTO_NETWORKS_API_KEY
capability:
  consumes:
  - type: http
    namespace: palo-alto-strata-cloud-manager-securityrules
    baseUri: https://api.strata.paloaltonetworks.com
    description: Palo Alto Networks Strata Cloud Manager API — SecurityRules business capability. Self-contained, no shared
      references.
    resources:
    - name: sse-config-v1-security-rules
      path: /sse/config/v1/security-rules
      operations:
      - name: listsecurityrules
        method: GET
        description: Palo Alto Networks List Security Rules
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: name
          in: query
          type: string
          description: Filter by rule name.
      - name: createsecurityrule
        method: POST
        description: Palo Alto Networks Create Security Rule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: sse-config-v1-security-rules-id
      path: /sse/config/v1/security-rules/{id}
      operations:
      - name: getsecurityrule
        method: GET
        description: Palo Alto Networks Get Security Rule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatesecurityrule
        method: PUT
        description: Palo Alto Networks Update Security Rule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletesecurityrule
        method: DELETE
        description: Palo Alto Networks Delete Security Rule
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.PALO_ALTO_NETWORKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: palo-alto-strata-cloud-manager-securityrules-rest
    port: 8080
    description: REST adapter for Palo Alto Networks Strata Cloud Manager API — SecurityRules. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/sse/config/v1/security-rules
      name: sse-config-v1-security-rules
      description: REST surface for sse-config-v1-security-rules.
      operations:
      - method: GET
        name: listsecurityrules
        description: Palo Alto Networks List Security Rules
        call: palo-alto-strata-cloud-manager-securityrules.listsecurityrules
        with:
          name: rest.name
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createsecurityrule
        description: Palo Alto Networks Create Security Rule
        call: palo-alto-strata-cloud-manager-securityrules.createsecurityrule
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/sse/config/v1/security-rules/{id}
      name: sse-config-v1-security-rules-id
      description: REST surface for sse-config-v1-security-rules-id.
      operations:
      - method: GET
        name: getsecurityrule
        description: Palo Alto Networks Get Security Rule
        call: palo-alto-strata-cloud-manager-securityrules.getsecurityrule
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatesecurityrule
        description: Palo Alto Networks Update Security Rule
        call: palo-alto-strata-cloud-manager-securityrules.updatesecurityrule
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletesecurityrule
        description: Palo Alto Networks Delete Security Rule
        call: palo-alto-strata-cloud-manager-securityrules.deletesecurityrule
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: palo-alto-strata-cloud-manager-securityrules-mcp
    port: 9090
    transport: http
    description: MCP adapter for Palo Alto Networks Strata Cloud Manager API — SecurityRules. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: palo-alto-networks-list-security
      description: Palo Alto Networks List Security Rules
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-strata-cloud-manager-securityrules.listsecurityrules
      with:
        name: tools.name
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-create-security
      description: Palo Alto Networks Create Security Rule
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: palo-alto-strata-cloud-manager-securityrules.createsecurityrule
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-get-security
      description: Palo Alto Networks Get Security Rule
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-strata-cloud-manager-securityrules.getsecurityrule
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-update-security
      description: Palo Alto Networks Update Security Rule
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: palo-alto-strata-cloud-manager-securityrules.updatesecurityrule
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-delete-security
      description: Palo Alto Networks Delete Security Rule
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: palo-alto-strata-cloud-manager-securityrules.deletesecurityrule
      outputParameters:
      - type: object
        mapping: $.