Factset · Capability

FactSet Procure to Pay SCIM — Groups

FactSet Procure to Pay SCIM — Groups. 4 operations. Lead operation: Factset Get a Group.. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetGroups

What You Can Do

GET
Get — Factset Get a Group.
/v1/group/{id}
PUT
Put — Factset Replace a Group.
/v1/group/{id}
PATCH
Patch — Factset Patch a Group (add, Replace, or Remove Attributes of a Group.)
/v1/group/{id}
GET
Get — Factset Get a List of Groups.
/v1/groups

MCP Tools

factset-get-group

Factset Get a Group.

read-only idempotent
factset-replace-group

Factset Replace a Group.

idempotent
factset-patch-group-add-replace

Factset Patch a Group (add, Replace, or Remove Attributes of a Group.)

idempotent
factset-get-list-groups

Factset Get a List of Groups.

read-only idempotent

Capability Spec

procure-to-pay-scim-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet Procure to Pay SCIM — Groups
  description: 'FactSet Procure to Pay SCIM — Groups. 4 operations. Lead operation: Factset Get a Group.. Self-contained Naftiko
    capability covering one Factset business surface.'
  tags:
  - Factset
  - Groups
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: procure-to-pay-scim-groups
    baseUri: https://api.factset.com/scim/v2
    description: FactSet Procure to Pay SCIM — Groups business capability. Self-contained, no shared references.
    resources:
    - name: Group-id
      path: /Group/{id}
      operations:
      - name: get
        method: GET
        description: Factset Get a Group.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: put
        method: PUT
        description: Factset Replace a Group.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: patch
        method: PATCH
        description: Factset Patch a Group (add, Replace, or Remove Attributes of a Group.)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: Groups
      path: /Groups
      operations:
      - name: get
        method: GET
        description: Factset Get a List of Groups.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.FACTSET_USER}}'
      password: '{{env.FACTSET_PASS}}'
  exposes:
  - type: rest
    namespace: procure-to-pay-scim-groups-rest
    port: 8080
    description: REST adapter for FactSet Procure to Pay SCIM — Groups. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/group/{id}
      name: group-id
      description: REST surface for Group-id.
      operations:
      - method: GET
        name: get
        description: Factset Get a Group.
        call: procure-to-pay-scim-groups.get
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: put
        description: Factset Replace a Group.
        call: procure-to-pay-scim-groups.put
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patch
        description: Factset Patch a Group (add, Replace, or Remove Attributes of a Group.)
        call: procure-to-pay-scim-groups.patch
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/groups
      name: groups
      description: REST surface for Groups.
      operations:
      - method: GET
        name: get
        description: Factset Get a List of Groups.
        call: procure-to-pay-scim-groups.get
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: procure-to-pay-scim-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet Procure to Pay SCIM — Groups. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: factset-get-group
      description: Factset Get a Group.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: procure-to-pay-scim-groups.get
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-replace-group
      description: Factset Replace a Group.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: procure-to-pay-scim-groups.put
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-patch-group-add-replace
      description: Factset Patch a Group (add, Replace, or Remove Attributes of a Group.)
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: procure-to-pay-scim-groups.patch
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-get-list-groups
      description: Factset Get a List of Groups.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: procure-to-pay-scim-groups.get
      outputParameters:
      - type: object
        mapping: $.