Palo Alto Networks · Capability

Prisma Cloud: Managed Security Service Provider (MSSP) — Policy Group Lifecycle Endpoints

Prisma Cloud: Managed Security Service Provider (MSSP) — Policy Group Lifecycle Endpoints. 5 operations. Lead operation: Palo Alto Networks Get the Details of All Existing Policy Groups. Self-contained Naftiko capability covering one Palo Alto Networks business surface.

Run with Naftiko Palo Alto NetworksPolicy Group Lifecycle Endpoints

What You Can Do

GET
Getallpolicygroups — Palo Alto Networks Get the Details of All Existing Policy Groups
/v1/api/v1/mssp/{mssp-id}/policy-group
POST
Createpolicygroup — Palo Alto Networks Create a Policy Group
/v1/api/v1/mssp/{mssp-id}/policy-group
GET
Getpolicygroupbyid — Palo Alto Networks Get the Details of an Existing Policy Group
/v1/api/v1/mssp/{mssp-id}/policy-group/{pg-id}
PUT
Updatepolicygroup — Palo Alto Networks Update a Policy Group
/v1/api/v1/mssp/{mssp-id}/policy-group/{pg-id}
DELETE
Deletepolicygroup — Palo Alto Networks Delete an Existing Policy Group
/v1/api/v1/mssp/{mssp-id}/policy-group/{pg-id}

MCP Tools

palo-alto-networks-get-details

Palo Alto Networks Get the Details of All Existing Policy Groups

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

Palo Alto Networks Create a Policy Group

palo-alto-networks-get-details-2

Palo Alto Networks Get the Details of an Existing Policy Group

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

Palo Alto Networks Update a Policy Group

idempotent
palo-alto-networks-delete-existing

Palo Alto Networks Delete an Existing Policy Group

idempotent

Capability Spec

palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: 'Prisma Cloud: Managed Security Service Provider (MSSP) — Policy Group Lifecycle Endpoints'
  description: 'Prisma Cloud: Managed Security Service Provider (MSSP) — Policy Group Lifecycle Endpoints. 5 operations. Lead
    operation: Palo Alto Networks Get the Details of All Existing Policy Groups. Self-contained Naftiko capability covering
    one Palo Alto Networks business surface.'
  tags:
  - Palo Alto Networks
  - Policy Group Lifecycle Endpoints
  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-prisma-cloud-mssp-policy-group-lifecycle-endpoints
    baseUri: https://mssp-api.prismacloud.io
    description: 'Prisma Cloud: Managed Security Service Provider (MSSP) — Policy Group Lifecycle Endpoints business capability.
      Self-contained, no shared references.'
    resources:
    - name: api-v1-mssp-mssp-id-policy-group
      path: /api/v1/mssp/{mssp-id}/policy-group
      operations:
      - name: getallpolicygroups
        method: GET
        description: Palo Alto Networks Get the Details of All Existing Policy Groups
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: mssp-id
          in: path
          type: string
          description: the mssp the policy group belongs to
          required: true
        - name: next_page_token
          in: query
          type: string
          description: pagination token to continue a previous query
      - name: createpolicygroup
        method: POST
        description: Palo Alto Networks Create a Policy Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: mssp-id
          in: path
          type: string
          description: the mssp the tenant group belongs to
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v1-mssp-mssp-id-policy-group-pg-id
      path: /api/v1/mssp/{mssp-id}/policy-group/{pg-id}
      operations:
      - name: getpolicygroupbyid
        method: GET
        description: Palo Alto Networks Get the Details of an Existing Policy Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: pg-id
          in: path
          type: string
          description: the id of the policy group
          required: true
        - name: mssp-id
          in: path
          type: string
          description: the mssp the policy group belongs to
          required: true
      - name: updatepolicygroup
        method: PUT
        description: Palo Alto Networks Update a Policy Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: pg-id
          in: path
          type: string
          description: the id of the policy group
          required: true
        - name: mssp-id
          in: path
          type: string
          description: the mssp the tenant group belongs to
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletepolicygroup
        method: DELETE
        description: Palo Alto Networks Delete an Existing Policy Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: pg-id
          in: path
          type: string
          description: the id of the policy group
          required: true
        - name: mssp-id
          in: path
          type: string
          description: the mssp the policy group belongs to
          required: true
    authentication:
      type: bearer
      token: '{{env.PALO_ALTO_NETWORKS_API_KEY}}'
  exposes:
  - type: rest
    namespace: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints-rest
    port: 8080
    description: 'REST adapter for Prisma Cloud: Managed Security Service Provider (MSSP) — Policy Group Lifecycle Endpoints.
      One Spectral-compliant resource per consumed operation, prefixed with /v1.'
    resources:
    - path: /v1/api/v1/mssp/{mssp-id}/policy-group
      name: api-v1-mssp-mssp-id-policy-group
      description: REST surface for api-v1-mssp-mssp-id-policy-group.
      operations:
      - method: GET
        name: getallpolicygroups
        description: Palo Alto Networks Get the Details of All Existing Policy Groups
        call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.getallpolicygroups
        with:
          mssp-id: rest.mssp-id
          next_page_token: rest.next_page_token
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createpolicygroup
        description: Palo Alto Networks Create a Policy Group
        call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.createpolicygroup
        with:
          mssp-id: rest.mssp-id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/mssp/{mssp-id}/policy-group/{pg-id}
      name: api-v1-mssp-mssp-id-policy-group-pg-id
      description: REST surface for api-v1-mssp-mssp-id-policy-group-pg-id.
      operations:
      - method: GET
        name: getpolicygroupbyid
        description: Palo Alto Networks Get the Details of an Existing Policy Group
        call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.getpolicygroupbyid
        with:
          pg-id: rest.pg-id
          mssp-id: rest.mssp-id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatepolicygroup
        description: Palo Alto Networks Update a Policy Group
        call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.updatepolicygroup
        with:
          pg-id: rest.pg-id
          mssp-id: rest.mssp-id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletepolicygroup
        description: Palo Alto Networks Delete an Existing Policy Group
        call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.deletepolicygroup
        with:
          pg-id: rest.pg-id
          mssp-id: rest.mssp-id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints-mcp
    port: 9090
    transport: http
    description: 'MCP adapter for Prisma Cloud: Managed Security Service Provider (MSSP) — Policy Group Lifecycle Endpoints.
      One tool per consumed operation, routed inline through this capability''s consumes block.'
    tools:
    - name: palo-alto-networks-get-details
      description: Palo Alto Networks Get the Details of All Existing Policy Groups
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.getallpolicygroups
      with:
        mssp-id: tools.mssp-id
        next_page_token: tools.next_page_token
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-create-policy
      description: Palo Alto Networks Create a Policy Group
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.createpolicygroup
      with:
        mssp-id: tools.mssp-id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-get-details-2
      description: Palo Alto Networks Get the Details of an Existing Policy Group
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.getpolicygroupbyid
      with:
        pg-id: tools.pg-id
        mssp-id: tools.mssp-id
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-update-policy
      description: Palo Alto Networks Update a Policy Group
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.updatepolicygroup
      with:
        pg-id: tools.pg-id
        mssp-id: tools.mssp-id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: palo-alto-networks-delete-existing
      description: Palo Alto Networks Delete an Existing Policy Group
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: palo-alto-prisma-cloud-mssp-policy-group-lifecycle-endpoints.deletepolicygroup
      with:
        pg-id: tools.pg-id
        mssp-id: tools.mssp-id
      outputParameters:
      - type: object
        mapping: $.