Reuters · Capability

Reuters Connect API — Items

Reuters Connect API — Items. 2 operations. Lead operation: Retrieve a Specific Content Item. Self-contained Naftiko capability covering one Reuters business surface.

Run with Naftiko ReutersItems

What You Can Do

GET
Getitem — Retrieve a Specific Content Item
/v1/item
GET
Listitems — List Items on a Channel
/v1/items

MCP Tools

retrieve-specific-content-item

Retrieve a Specific Content Item

read-only idempotent
list-items-channel

List Items on a Channel

read-only idempotent

Capability Spec

connect-items.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Reuters Connect API — Items
  description: 'Reuters Connect API — Items. 2 operations. Lead operation: Retrieve a Specific Content Item. Self-contained
    Naftiko capability covering one Reuters business surface.'
  tags:
  - Reuters
  - Items
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    REUTERS_API_KEY: REUTERS_API_KEY
capability:
  consumes:
  - type: http
    namespace: connect-items
    baseUri: https://rmb.reuters.com/rmd/rest/xml
    description: Reuters Connect API — Items business capability. Self-contained, no shared references.
    resources:
    - name: item
      path: /item
      operations:
      - name: getitem
        method: GET
        description: Retrieve a Specific Content Item
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: items
      path: /items
      operations:
      - name: listitems
        method: GET
        description: List Items on a Channel
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: token
      value: '{{env.REUTERS_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: connect-items-rest
    port: 8080
    description: REST adapter for Reuters Connect API — Items. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/item
      name: item
      description: REST surface for item.
      operations:
      - method: GET
        name: getitem
        description: Retrieve a Specific Content Item
        call: connect-items.getitem
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/items
      name: items
      description: REST surface for items.
      operations:
      - method: GET
        name: listitems
        description: List Items on a Channel
        call: connect-items.listitems
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connect-items-mcp
    port: 9090
    transport: http
    description: MCP adapter for Reuters Connect API — Items. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: retrieve-specific-content-item
      description: Retrieve a Specific Content Item
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-items.getitem
      outputParameters:
      - type: object
        mapping: $.
    - name: list-items-channel
      description: List Items on a Channel
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-items.listitems
      outputParameters:
      - type: object
        mapping: $.