Factset · Capability

FactSet Vault API — Components

FactSet Vault API — Components. 2 operations. Lead operation: Factset Get Vault Components. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetComponents

What You Can Do

GET
Getvaultcomponents — Factset Get Vault Components
/v1/analytics/engines/vault/v3/components
GET
Getvaultcomponentbyid — Factset Get Vault Component by Id
/v1/analytics/engines/vault/v3/components/{id}

MCP Tools

factset-get-vault-components

Factset Get Vault Components

read-only idempotent
factset-get-vault-component-id

Factset Get Vault Component by Id

read-only idempotent

Capability Spec

vault-components.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet Vault API — Components
  description: 'FactSet Vault API — Components. 2 operations. Lead operation: Factset Get Vault Components. Self-contained
    Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Components
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: vault-components
    baseUri: https://api.factset.com
    description: FactSet Vault API — Components business capability. Self-contained, no shared references.
    resources:
    - name: analytics-engines-vault-v3-components
      path: /analytics/engines/vault/v3/components
      operations:
      - name: getvaultcomponents
        method: GET
        description: Factset Get Vault Components
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: document
          in: query
          type: string
          description: Document Name
          required: true
    - name: analytics-engines-vault-v3-components-id
      path: /analytics/engines/vault/v3/components/{id}
      operations:
      - name: getvaultcomponentbyid
        method: GET
        description: Factset Get Vault Component by Id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier for a vault component
          required: true
    authentication:
      type: bearer
      token: '{{env.FACTSET_API_KEY}}'
  exposes:
  - type: rest
    namespace: vault-components-rest
    port: 8080
    description: REST adapter for FactSet Vault API — Components. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/analytics/engines/vault/v3/components
      name: analytics-engines-vault-v3-components
      description: REST surface for analytics-engines-vault-v3-components.
      operations:
      - method: GET
        name: getvaultcomponents
        description: Factset Get Vault Components
        call: vault-components.getvaultcomponents
        with:
          document: rest.document
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/analytics/engines/vault/v3/components/{id}
      name: analytics-engines-vault-v3-components-id
      description: REST surface for analytics-engines-vault-v3-components-id.
      operations:
      - method: GET
        name: getvaultcomponentbyid
        description: Factset Get Vault Component by Id
        call: vault-components.getvaultcomponentbyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: vault-components-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet Vault API — Components. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: factset-get-vault-components
      description: Factset Get Vault Components
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vault-components.getvaultcomponents
      with:
        document: tools.document
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-get-vault-component-id
      description: Factset Get Vault Component by Id
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: vault-components.getvaultcomponentbyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.