Factset · Capability

FactSet Real-Time Quotes API — Category

FactSet Real-Time Quotes API — Category. 2 operations. Lead operation: Factset Details of a Category.. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetCategory

What You Can Do

GET
Getcategoryget — Factset Details of a Category.
/v1/category/get
GET
Getcategorylist — Factset List of Categories.
/v1/category/list

MCP Tools

factset-details-category

Factset Details of a Category.

read-only idempotent
factset-list-categories

Factset List of Categories.

read-only idempotent

Capability Spec

real-time-quotes-category.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet Real-Time Quotes API — Category
  description: 'FactSet Real-Time Quotes API — Category. 2 operations. Lead operation: Factset Details of a Category.. Self-contained
    Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Category
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: real-time-quotes-category
    baseUri: https://api.factset.com/wealth/v3
    description: FactSet Real-Time Quotes API — Category business capability. Self-contained, no shared references.
    resources:
    - name: category-get
      path: /category/get
      operations:
      - name: getcategoryget
        method: GET
        description: Factset Details of a Category.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: query
          type: number
          required: true
        - name: _attributes
          in: query
          type: array
          description: Limit the attributes returned in the response to the specified set.
        - name: _language
          in: query
          type: string
    - name: category-list
      path: /category/list
      operations:
      - name: getcategorylist
        method: GET
        description: Factset List of Categories.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: ids
          in: query
          type: array
          required: true
        - name: _attributes
          in: query
          type: array
          description: Limit the attributes returned in the response to the specified set.
        - name: _language
          in: query
          type: string
    authentication:
      type: bearer
      token: '{{env.FACTSET_API_KEY}}'
  exposes:
  - type: rest
    namespace: real-time-quotes-category-rest
    port: 8080
    description: REST adapter for FactSet Real-Time Quotes API — Category. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/category/get
      name: category-get
      description: REST surface for category-get.
      operations:
      - method: GET
        name: getcategoryget
        description: Factset Details of a Category.
        call: real-time-quotes-category.getcategoryget
        with:
          id: rest.id
          _attributes: rest._attributes
          _language: rest._language
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/category/list
      name: category-list
      description: REST surface for category-list.
      operations:
      - method: GET
        name: getcategorylist
        description: Factset List of Categories.
        call: real-time-quotes-category.getcategorylist
        with:
          ids: rest.ids
          _attributes: rest._attributes
          _language: rest._language
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: real-time-quotes-category-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet Real-Time Quotes API — Category. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: factset-details-category
      description: Factset Details of a Category.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: real-time-quotes-category.getcategoryget
      with:
        id: tools.id
        _attributes: tools._attributes
        _language: tools._language
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-list-categories
      description: Factset List of Categories.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: real-time-quotes-category.getcategorylist
      with:
        ids: tools.ids
        _attributes: tools._attributes
        _language: tools._language
      outputParameters:
      - type: object
        mapping: $.