Factset · Capability

FactSet Vermilion API — User

FactSet Vermilion API — User. 4 operations. Lead operation: Factset Retrieves a Vrs User. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetUser

What You Can Do

GET
Getuserbyid — Factset Retrieves a Vrs User
/v1/scim/v2/users/{userid}
DELETE
Deleteuserbyid — Factset Deletes a Vrs User
/v1/scim/v2/users/{userid}
PATCH
Patchuserbyid — Factset Add or Remove Vrs User Attributes
/v1/scim/v2/users/{userid}
PUT
Updateuserbyid — Factset Updates a Vrs User
/v1/scim/v2/users/{userid}

MCP Tools

factset-retrieves-vrs-user

Factset Retrieves a Vrs User

read-only idempotent
factset-deletes-vrs-user

Factset Deletes a Vrs User

idempotent
factset-add-remove-vrs-user

Factset Add or Remove Vrs User Attributes

idempotent
factset-updates-vrs-user

Factset Updates a Vrs User

idempotent

Capability Spec

vermilion-user.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet Vermilion API — User
  description: 'FactSet Vermilion API — User. 4 operations. Lead operation: Factset Retrieves a Vrs User. Self-contained Naftiko
    capability covering one Factset business surface.'
  tags:
  - Factset
  - User
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: vermilion-user
    baseUri: ''
    description: FactSet Vermilion API — User business capability. Self-contained, no shared references.
    resources:
    - name: scim-v2-Users-userId
      path: /scim/v2/Users/{userId}
      operations:
      - name: getuserbyid
        method: GET
        description: Factset Retrieves a Vrs User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userId
          in: path
          type: string
          description: The ID of the user
          required: true
      - name: deleteuserbyid
        method: DELETE
        description: Factset Deletes a Vrs User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userId
          in: path
          type: string
          description: The ID of the user
          required: true
      - name: patchuserbyid
        method: PATCH
        description: Factset Add or Remove Vrs User Attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userId
          in: path
          type: string
          description: The ID of the user
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updateuserbyid
        method: PUT
        description: Factset Updates a Vrs User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: userId
          in: path
          type: string
          description: The ID of the user
          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-user-rest
    port: 8080
    description: REST adapter for FactSet Vermilion API — User. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/scim/v2/users/{userid}
      name: scim-v2-users-userid
      description: REST surface for scim-v2-Users-userId.
      operations:
      - method: GET
        name: getuserbyid
        description: Factset Retrieves a Vrs User
        call: vermilion-user.getuserbyid
        with:
          userId: rest.userId
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteuserbyid
        description: Factset Deletes a Vrs User
        call: vermilion-user.deleteuserbyid
        with:
          userId: rest.userId
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchuserbyid
        description: Factset Add or Remove Vrs User Attributes
        call: vermilion-user.patchuserbyid
        with:
          userId: rest.userId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateuserbyid
        description: Factset Updates a Vrs User
        call: vermilion-user.updateuserbyid
        with:
          userId: rest.userId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vermilion-user-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet Vermilion API — User. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: factset-retrieves-vrs-user
      description: Factset Retrieves a Vrs User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vermilion-user.getuserbyid
      with:
        userId: tools.userId
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-deletes-vrs-user
      description: Factset Deletes a Vrs User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: vermilion-user.deleteuserbyid
      with:
        userId: tools.userId
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-add-remove-vrs-user
      description: Factset Add or Remove Vrs User Attributes
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: vermilion-user.patchuserbyid
      with:
        userId: tools.userId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-updates-vrs-user
      description: Factset Updates a Vrs User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: vermilion-user.updateuserbyid
      with:
        userId: tools.userId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.