Factset · Capability

FactSet Real-Time News API — Search

FactSet Real-Time News API — Search. 2 operations. Lead operation: Factset Search for News Articles Using a Fulltext Search.. Self-contained Naftiko capability covering one Factset business surface.

Run with Naftiko FactsetSearch

What You Can Do

POST
Postnewsarticlesearchbytext — Factset Search for News Articles Using a Fulltext Search.
/v1/news/article/searchbytext
POST
Postnewspublishersearchbyname — Factset Search for Publishers.
/v1/news/publisher/searchbyname

MCP Tools

factset-search-news-articles-using

Factset Search for News Articles Using a Fulltext Search.

read-only
factset-search-publishers

Factset Search for Publishers.

read-only

Capability Spec

real-time-news-search.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: FactSet Real-Time News API — Search
  description: 'FactSet Real-Time News API — Search. 2 operations. Lead operation: Factset Search for News Articles Using
    a Fulltext Search.. Self-contained Naftiko capability covering one Factset business surface.'
  tags:
  - Factset
  - Search
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    FACTSET_API_KEY: FACTSET_API_KEY
capability:
  consumes:
  - type: http
    namespace: real-time-news-search
    baseUri: https://api.factset.com/wealth/v3
    description: FactSet Real-Time News API — Search business capability. Self-contained, no shared references.
    resources:
    - name: news-article-searchByText
      path: /news/article/searchByText
      operations:
      - name: postnewsarticlesearchbytext
        method: POST
        description: Factset Search for News Articles Using a Fulltext Search.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: news-publisher-searchByName
      path: /news/publisher/searchByName
      operations:
      - name: postnewspublishersearchbyname
        method: POST
        description: Factset Search for Publishers.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.FACTSET_API_KEY}}'
  exposes:
  - type: rest
    namespace: real-time-news-search-rest
    port: 8080
    description: REST adapter for FactSet Real-Time News API — Search. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/news/article/searchbytext
      name: news-article-searchbytext
      description: REST surface for news-article-searchByText.
      operations:
      - method: POST
        name: postnewsarticlesearchbytext
        description: Factset Search for News Articles Using a Fulltext Search.
        call: real-time-news-search.postnewsarticlesearchbytext
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/news/publisher/searchbyname
      name: news-publisher-searchbyname
      description: REST surface for news-publisher-searchByName.
      operations:
      - method: POST
        name: postnewspublishersearchbyname
        description: Factset Search for Publishers.
        call: real-time-news-search.postnewspublishersearchbyname
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: real-time-news-search-mcp
    port: 9090
    transport: http
    description: MCP adapter for FactSet Real-Time News API — Search. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: factset-search-news-articles-using
      description: Factset Search for News Articles Using a Fulltext Search.
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: real-time-news-search.postnewsarticlesearchbytext
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: factset-search-publishers
      description: Factset Search for Publishers.
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: real-time-news-search.postnewspublishersearchbyname
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.