Factset · Capability

FactSet Vermilion API — Groups

FactSet Vermilion API — Groups. 6 operations. Lead operation: Factset Retrieves a List of Vrs Role. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetGroups

What You Can Do

GET
Getallroles — Factset Retrieves a List of Vrs Role
/v1/scim/v2/groups
POST
Createrole — Factset Creates a Role
/v1/scim/v2/groups
GET
Getrolebyid — Factset Retrieves a Vrs Role
/v1/scim/v2/groups/{groupid}
DELETE
Deleterolebyid — Factset Deletes a Vrs Role
/v1/scim/v2/groups/{groupid}
PATCH
Patchrolebyid — Factset Add or Remove a User To/from a Group
/v1/scim/v2/groups/{groupid}
PUT
Updaterolebyid — Factset Updates a Vrs Group
/v1/scim/v2/groups/{groupid}

MCP Tools

factset-retrieves-list-vrs-role

Factset Retrieves a List of Vrs Role

read-only idempotent
factset-creates-role

Factset Creates a Role

factset-retrieves-vrs-role

Factset Retrieves a Vrs Role

read-only idempotent
factset-deletes-vrs-role

Factset Deletes a Vrs Role

idempotent
factset-add-remove-user-group

Factset Add or Remove a User To/from a Group

idempotent
factset-updates-vrs-group

Factset Updates a Vrs Group

idempotent

Capability Spec

vermilion-groups.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet Vermilion API — Groups
  description: 'FactSet Vermilion API — Groups. 6 operations. Lead operation: Factset Retrieves a List of Vrs Role. 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: vermilion-groups
    baseUri: ''
    description: FactSet Vermilion API — Groups business capability. Self-contained, no shared references.
    resources:
    - name: scim-v2-Groups
      path: /scim/v2/Groups
      operations:
      - name: getallroles
        method: GET
        description: Factset Retrieves a List of Vrs Role
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: count
          in: query
          type: integer
          description: Non-negative maximum number of entries to return
        - name: startIndex
          in: query
          type: integer
          description: The 1-based index of the first query result
      - name: createrole
        method: POST
        description: Factset Creates a Role
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: scim-v2-Groups-groupId
      path: /scim/v2/Groups/{groupId}
      operations:
      - name: getrolebyid
        method: GET
        description: Factset Retrieves a Vrs Role
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: groupId
          in: path
          type: string
          description: The ID of the role
          required: true
      - name: deleterolebyid
        method: DELETE
        description: Factset Deletes a Vrs Role
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: groupId
          in: path
          type: string
          description: The ID of the group
          required: true
      - name: patchrolebyid
        method: PATCH
        description: Factset Add or Remove a User To/from a Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: groupId
          in: path
          type: string
          description: The ID of the role
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updaterolebyid
        method: PUT
        description: Factset Updates a Vrs Group
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: groupId
          in: path
          type: string
          description: The ID of the group
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.FACTSET_API_KEY}}'
  exposes:
  - type: rest
    namespace: vermilion-groups-rest
    port: 8080
    description: REST adapter for FactSet Vermilion API — Groups. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/scim/v2/groups
      name: scim-v2-groups
      description: REST surface for scim-v2-Groups.
      operations:
      - method: GET
        name: getallroles
        description: Factset Retrieves a List of Vrs Role
        call: vermilion-groups.getallroles
        with:
          count: rest.count
          startIndex: rest.startIndex
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createrole
        description: Factset Creates a Role
        call: vermilion-groups.createrole
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/scim/v2/groups/{groupid}
      name: scim-v2-groups-groupid
      description: REST surface for scim-v2-Groups-groupId.
      operations:
      - method: GET
        name: getrolebyid
        description: Factset Retrieves a Vrs Role
        call: vermilion-groups.getrolebyid
        with:
          groupId: rest.groupId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleterolebyid
        description: Factset Deletes a Vrs Role
        call: vermilion-groups.deleterolebyid
        with:
          groupId: rest.groupId
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchrolebyid
        description: Factset Add or Remove a User To/from a Group
        call: vermilion-groups.patchrolebyid
        with:
          groupId: rest.groupId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updaterolebyid
        description: Factset Updates a Vrs Group
        call: vermilion-groups.updaterolebyid
        with:
          groupId: rest.groupId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vermilion-groups-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet Vermilion API — Groups. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: factset-retrieves-list-vrs-role
      description: Factset Retrieves a List of Vrs Role
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vermilion-groups.getallroles
      with:
        count: tools.count
        startIndex: tools.startIndex
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-creates-role
      description: Factset Creates a Role
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: vermilion-groups.createrole
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-retrieves-vrs-role
      description: Factset Retrieves a Vrs Role
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vermilion-groups.getrolebyid
      with:
        groupId: tools.groupId
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-deletes-vrs-role
      description: Factset Deletes a Vrs Role
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: vermilion-groups.deleterolebyid
      with:
        groupId: tools.groupId
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-add-remove-user-group
      description: Factset Add or Remove a User To/from a Group
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: vermilion-groups.patchrolebyid
      with:
        groupId: tools.groupId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-updates-vrs-group
      description: Factset Updates a Vrs Group
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: vermilion-groups.updaterolebyid
      with:
        groupId: tools.groupId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.