Factset · Capability

FactSet IRN Meetings API — Download

FactSet IRN Meetings API — Download. 2 operations. Lead operation: Factset Download an Attachment From a Meeting. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetDownload

What You Can Do

GET
Downloadattachment — Factset Download an Attachment From a Meeting
/v1/v1/meetings/{meetingid}/attachments/{attachmentid}/download
GET
Downloadcommentattachmentforcomment — Factset Download Single Attachment Detail of a Comment Belonging to a Meeting
/v1/v1/meetings/{meetingid}/comments/{commentid}/attachments/{attachmentid}/download

MCP Tools

factset-download-attachment-meeting

Factset Download an Attachment From a Meeting

read-only idempotent
factset-download-single-attachment-detail

Factset Download Single Attachment Detail of a Comment Belonging to a Meeting

read-only idempotent

Capability Spec

irn-meetings-download.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet IRN Meetings API — Download
  description: 'FactSet IRN Meetings API — Download. 2 operations. Lead operation: Factset Download an Attachment From a Meeting.
    Self-contained Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Download
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: irn-meetings-download
    baseUri: https://api.factset.com/research/irn
    description: FactSet IRN Meetings API — Download business capability. Self-contained, no shared references.
    resources:
    - name: v1-meetings-meetingId-attachments-attachmentId-download
      path: /v1/meetings/{meetingId}/attachments/{attachmentId}/download
      operations:
      - name: downloadattachment
        method: GET
        description: Factset Download an Attachment From a Meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: path
          type: string
          required: true
        - name: attachmentId
          in: path
          type: string
          required: true
    - name: v1-meetings-meetingId-comments-commentId-attachments-attachmentId-download
      path: /v1/meetings/{meetingId}/comments/{commentId}/attachments/{attachmentId}/download
      operations:
      - name: downloadcommentattachmentforcomment
        method: GET
        description: Factset Download Single Attachment Detail of a Comment Belonging to a Meeting
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: meetingId
          in: path
          type: string
          required: true
        - name: commentId
          in: path
          type: string
          required: true
        - name: attachmentId
          in: path
          type: string
          required: true
    authentication:
      type: basic
      username: '{{env.FACTSET_USER}}'
      password: '{{env.FACTSET_PASS}}'
  exposes:
  - type: rest
    namespace: irn-meetings-download-rest
    port: 8080
    description: REST adapter for FactSet IRN Meetings API — Download. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/meetings/{meetingid}/attachments/{attachmentid}/download
      name: v1-meetings-meetingid-attachments-attachmentid-download
      description: REST surface for v1-meetings-meetingId-attachments-attachmentId-download.
      operations:
      - method: GET
        name: downloadattachment
        description: Factset Download an Attachment From a Meeting
        call: irn-meetings-download.downloadattachment
        with:
          meetingId: rest.meetingId
          attachmentId: rest.attachmentId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/meetings/{meetingid}/comments/{commentid}/attachments/{attachmentid}/download
      name: v1-meetings-meetingid-comments-commentid-attachments-attachmentid-download
      description: REST surface for v1-meetings-meetingId-comments-commentId-attachments-attachmentId-download.
      operations:
      - method: GET
        name: downloadcommentattachmentforcomment
        description: Factset Download Single Attachment Detail of a Comment Belonging to a Meeting
        call: irn-meetings-download.downloadcommentattachmentforcomment
        with:
          meetingId: rest.meetingId
          commentId: rest.commentId
          attachmentId: rest.attachmentId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: irn-meetings-download-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet IRN Meetings API — Download. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: factset-download-attachment-meeting
      description: Factset Download an Attachment From a Meeting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: irn-meetings-download.downloadattachment
      with:
        meetingId: tools.meetingId
        attachmentId: tools.attachmentId
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-download-single-attachment-detail
      description: Factset Download Single Attachment Detail of a Comment Belonging to a Meeting
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: irn-meetings-download.downloadcommentattachmentforcomment
      with:
        meetingId: tools.meetingId
        commentId: tools.commentId
        attachmentId: tools.attachmentId
      outputParameters:
      - type: object
        mapping: $.