Factset · Capability

Factset PA Engine API — Linked

Factset PA Engine API — Linked. 5 operations. Lead operation: Factset Create a Linked Pa Template. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetLinked

What You Can Do

POST
Createlinkedpatemplates — Factset Create a Linked Pa Template
/v1/analytics/engines/pa/v3/linked-templates
GET
Getlinkedpatemplates — Factset Get Linked Pa Templates
/v1/analytics/engines/pa/v3/linked-templates
PUT
Updatelinkedpatemplates — Factset Update a Linked Pa Template
/v1/analytics/engines/pa/v3/linked-templates/{id}
DELETE
Deletelinkedpatemplates — Factset Delete a Linked Pa Template.
/v1/analytics/engines/pa/v3/linked-templates/{id}
GET
Getlinkedpatemplatesbyid — Factset Get Linked Pa Template by Id
/v1/analytics/engines/pa/v3/linked-templates/{id}

MCP Tools

factset-create-linked-pa-template

Factset Create a Linked Pa Template

factset-get-linked-pa-templates

Factset Get Linked Pa Templates

read-only idempotent
factset-update-linked-pa-template

Factset Update a Linked Pa Template

idempotent
factset-delete-linked-pa-template

Factset Delete a Linked Pa Template.

idempotent
factset-get-linked-pa-template

Factset Get Linked Pa Template by Id

read-only idempotent

Capability Spec

pa-engine-linked.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Factset PA Engine API — Linked
  description: 'Factset PA Engine API — Linked. 5 operations. Lead operation: Factset Create a Linked Pa Template. Self-contained
    Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Linked
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: pa-engine-linked
    baseUri: https://api.factset.com
    description: Factset PA Engine API — Linked business capability. Self-contained, no shared references.
    resources:
    - name: analytics-engines-pa-v3-linked-templates
      path: /analytics/engines/pa/v3/linked-templates
      operations:
      - name: createlinkedpatemplates
        method: POST
        description: Factset Create a Linked Pa Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: getlinkedpatemplates
        method: GET
        description: Factset Get Linked Pa Templates
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: directory
          in: query
          type: string
          description: Get linked PA templates in path.
        - name: documentDirectory
          in: query
          type: string
          description: Get linked PA templates for documents in document path
        - name: documentName
          in: query
          type: string
          description: Get linked PA templates for documents by document name
    - name: analytics-engines-pa-v3-linked-templates-id
      path: /analytics/engines/pa/v3/linked-templates/{id}
      operations:
      - name: updatelinkedpatemplates
        method: PUT
        description: Factset Update a Linked Pa Template
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier for a linked PA template
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletelinkedpatemplates
        method: DELETE
        description: Factset Delete a Linked Pa Template.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier for a linked PA template
          required: true
      - name: getlinkedpatemplatesbyid
        method: GET
        description: Factset Get Linked Pa Template by Id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier for a linked PA template
          required: true
    authentication:
      type: bearer
      token: '{{env.FACTSET_API_KEY}}'
  exposes:
  - type: rest
    namespace: pa-engine-linked-rest
    port: 8080
    description: REST adapter for Factset PA Engine API — Linked. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/analytics/engines/pa/v3/linked-templates
      name: analytics-engines-pa-v3-linked-templates
      description: REST surface for analytics-engines-pa-v3-linked-templates.
      operations:
      - method: POST
        name: createlinkedpatemplates
        description: Factset Create a Linked Pa Template
        call: pa-engine-linked.createlinkedpatemplates
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getlinkedpatemplates
        description: Factset Get Linked Pa Templates
        call: pa-engine-linked.getlinkedpatemplates
        with:
          directory: rest.directory
          documentDirectory: rest.documentDirectory
          documentName: rest.documentName
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/analytics/engines/pa/v3/linked-templates/{id}
      name: analytics-engines-pa-v3-linked-templates-id
      description: REST surface for analytics-engines-pa-v3-linked-templates-id.
      operations:
      - method: PUT
        name: updatelinkedpatemplates
        description: Factset Update a Linked Pa Template
        call: pa-engine-linked.updatelinkedpatemplates
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletelinkedpatemplates
        description: Factset Delete a Linked Pa Template.
        call: pa-engine-linked.deletelinkedpatemplates
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getlinkedpatemplatesbyid
        description: Factset Get Linked Pa Template by Id
        call: pa-engine-linked.getlinkedpatemplatesbyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pa-engine-linked-mcp
    port: 9090
    transport: http
    description: MCP adapter for Factset PA Engine API — Linked. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: factset-create-linked-pa-template
      description: Factset Create a Linked Pa Template
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pa-engine-linked.createlinkedpatemplates
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-get-linked-pa-templates
      description: Factset Get Linked Pa Templates
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pa-engine-linked.getlinkedpatemplates
      with:
        directory: tools.directory
        documentDirectory: tools.documentDirectory
        documentName: tools.documentName
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-update-linked-pa-template
      description: Factset Update a Linked Pa Template
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: pa-engine-linked.updatelinkedpatemplates
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-delete-linked-pa-template
      description: Factset Delete a Linked Pa Template.
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: pa-engine-linked.deletelinkedpatemplates
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-get-linked-pa-template
      description: Factset Get Linked Pa Template by Id
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: pa-engine-linked.getlinkedpatemplatesbyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.