Factset · Capability

FactSet StreetAccount News API — Views

FactSet StreetAccount News API — Views. 5 operations. Lead operation: Factset Retrieves Streetaccount Search Views. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetViews

What You Can Do

GET
Getstreetaccountviews — Factset Retrieves Streetaccount Search Views
/v1/streetaccount/views
POST
Createstreetaccountview — Factset Creates and Saves a Streetaccount View
/v1/streetaccount/views/{id}
PUT
Editstreetaccountview — Factset Edits and Saves an Existing Streetaccount View
/v1/streetaccount/views/{id}
DELETE
Deletestreetaccountview — Factset Deletes an Existing Streetaccount View
/v1/streetaccount/views/{id}
POST
Getstreetaccountheadlinesbyview — Factset Retrieve Streetaccount Headlines for Given View
/v1/streetaccount/views/{id}/headlines

MCP Tools

factset-retrieves-streetaccount-search-views

Factset Retrieves Streetaccount Search Views

read-only idempotent
factset-creates-and-saves-streetaccount

Factset Creates and Saves a Streetaccount View

factset-edits-and-saves-existing

Factset Edits and Saves an Existing Streetaccount View

idempotent
factset-deletes-existing-streetaccount-view

Factset Deletes an Existing Streetaccount View

idempotent
factset-retrieve-streetaccount-headlines-given

Factset Retrieve Streetaccount Headlines for Given View

read-only

Capability Spec

streetaccount-news-views.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet StreetAccount News API — Views
  description: 'FactSet StreetAccount News API — Views. 5 operations. Lead operation: Factset Retrieves Streetaccount Search
    Views. Self-contained Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Views
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: streetaccount-news-views
    baseUri: https://api.factset.com/research/news/v0
    description: FactSet StreetAccount News API — Views business capability. Self-contained, no shared references.
    resources:
    - name: streetaccount-views
      path: /streetaccount/views
      operations:
      - name: getstreetaccountviews
        method: GET
        description: Factset Retrieves Streetaccount Search Views
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: streetaccount-views-id
      path: /streetaccount/views/{id}
      operations:
      - name: createstreetaccountview
        method: POST
        description: Factset Creates and Saves a Streetaccount View
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: view id of the view which is the be created
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: editstreetaccountview
        method: PUT
        description: Factset Edits and Saves an Existing Streetaccount View
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: view id of the view to be edited
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deletestreetaccountview
        method: DELETE
        description: Factset Deletes an Existing Streetaccount View
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: view id of the view to be deleted
          required: true
    - name: streetaccount-views-id-headlines
      path: /streetaccount/views/{id}/headlines
      operations:
      - name: getstreetaccountheadlinesbyview
        method: POST
        description: Factset Retrieve Streetaccount Headlines for Given View
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: view id of the view to return headlines for
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.FACTSET_API_KEY}}'
  exposes:
  - type: rest
    namespace: streetaccount-news-views-rest
    port: 8080
    description: REST adapter for FactSet StreetAccount News API — Views. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/streetaccount/views
      name: streetaccount-views
      description: REST surface for streetaccount-views.
      operations:
      - method: GET
        name: getstreetaccountviews
        description: Factset Retrieves Streetaccount Search Views
        call: streetaccount-news-views.getstreetaccountviews
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/streetaccount/views/{id}
      name: streetaccount-views-id
      description: REST surface for streetaccount-views-id.
      operations:
      - method: POST
        name: createstreetaccountview
        description: Factset Creates and Saves a Streetaccount View
        call: streetaccount-news-views.createstreetaccountview
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: editstreetaccountview
        description: Factset Edits and Saves an Existing Streetaccount View
        call: streetaccount-news-views.editstreetaccountview
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletestreetaccountview
        description: Factset Deletes an Existing Streetaccount View
        call: streetaccount-news-views.deletestreetaccountview
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/streetaccount/views/{id}/headlines
      name: streetaccount-views-id-headlines
      description: REST surface for streetaccount-views-id-headlines.
      operations:
      - method: POST
        name: getstreetaccountheadlinesbyview
        description: Factset Retrieve Streetaccount Headlines for Given View
        call: streetaccount-news-views.getstreetaccountheadlinesbyview
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: streetaccount-news-views-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet StreetAccount News API — Views. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: factset-retrieves-streetaccount-search-views
      description: Factset Retrieves Streetaccount Search Views
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: streetaccount-news-views.getstreetaccountviews
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-creates-and-saves-streetaccount
      description: Factset Creates and Saves a Streetaccount View
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: streetaccount-news-views.createstreetaccountview
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-edits-and-saves-existing
      description: Factset Edits and Saves an Existing Streetaccount View
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: streetaccount-news-views.editstreetaccountview
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-deletes-existing-streetaccount-view
      description: Factset Deletes an Existing Streetaccount View
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: streetaccount-news-views.deletestreetaccountview
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-retrieve-streetaccount-headlines-given
      description: Factset Retrieve Streetaccount Headlines for Given View
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: streetaccount-news-views.getstreetaccountheadlinesbyview
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.