Factset · Capability

FactSet Signals API — Entities

FactSet Signals API — Entities. 2 operations. Lead operation: Entities. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetEntities

What You Can Do

GET
Getevententities — Fetch FactSet entity IDs for events that match the filtering criteria
/v1/events/entities
POST
Postevententities — Fetch FactSet entity IDs for events that match the filtering criteria
/v1/events/entities

MCP Tools

fetch-factset-entity-ids-events

Fetch FactSet entity IDs for events that match the filtering criteria

read-only idempotent
fetch-factset-entity-ids-events-2

Fetch FactSet entity IDs for events that match the filtering criteria

read-only

Capability Spec

signals-entities.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet Signals API — Entities
  description: 'FactSet Signals API — Entities. 2 operations. Lead operation: Entities. Self-contained Naftiko capability
    covering one Factset business surface.'
  tags:
  - Factset
  - Entities
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: signals-entities
    baseUri: https://api.factset.com/signals/v2
    description: FactSet Signals API — Entities business capability. Self-contained, no shared references.
    resources:
    - name: events-entities
      path: /events/entities
      operations:
      - name: getevententities
        method: GET
        description: Fetch FactSet entity IDs for events that match the filtering criteria
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: postevententities
        method: POST
        description: Fetch FactSet entity IDs for events that match the filtering criteria
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.FACTSET_USER}}'
      password: '{{env.FACTSET_PASS}}'
  exposes:
  - type: rest
    namespace: signals-entities-rest
    port: 8080
    description: REST adapter for FactSet Signals API — Entities. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/events/entities
      name: events-entities
      description: REST surface for events-entities.
      operations:
      - method: GET
        name: getevententities
        description: Fetch FactSet entity IDs for events that match the filtering criteria
        call: signals-entities.getevententities
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: postevententities
        description: Fetch FactSet entity IDs for events that match the filtering criteria
        call: signals-entities.postevententities
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: signals-entities-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet Signals API — Entities. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: fetch-factset-entity-ids-events
      description: Fetch FactSet entity IDs for events that match the filtering criteria
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: signals-entities.getevententities
      outputParameters:
      - type: object
        mapping: $.
    - name: fetch-factset-entity-ids-events-2
      description: Fetch FactSet entity IDs for events that match the filtering criteria
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: signals-entities.postevententities
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.