Symphony · Capability

Symphony Agent API — Datafeeds

Symphony Agent API — Datafeeds. 4 operations. Lead operation: Symphony Read List of Real Time Messages / Events Stream ("datafeed"). Self-contained Naftiko capability covering one Symphony business surface.

Run with Naftiko SymphonyDatafeeds

What You Can Do

GET
Listdatafeed — Symphony Read List of Real Time Messages / Events Stream ("datafeed")
/v1/v5/datafeeds
POST
Createdatafeed — Symphony Create a New Real Time Messages / Events Stream ("datafeed")
/v1/v5/datafeeds
DELETE
Deletedatafeed — Symphony Delete the Specified Real Time Message / Event Stream ("datafeed")
/v1/v5/datafeeds/{datafeedid}
POST
Readdatafeed — Symphony Read the Specified Real Time Message / Event Stream ("datafeed")
/v1/v5/datafeeds/{datafeedid}/read

MCP Tools

symphony-read-list-real-time

Symphony Read List of Real Time Messages / Events Stream ("datafeed")

read-only idempotent
symphony-create-new-real-time

Symphony Create a New Real Time Messages / Events Stream ("datafeed")

symphony-delete-specified-real-time

Symphony Delete the Specified Real Time Message / Event Stream ("datafeed")

idempotent
symphony-read-specified-real-time

Symphony Read the Specified Real Time Message / Event Stream ("datafeed")

Capability Spec

agent-datafeeds.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Symphony Agent API — Datafeeds
  description: 'Symphony Agent API — Datafeeds. 4 operations. Lead operation: Symphony Read List of Real Time Messages / Events
    Stream ("datafeed"). Self-contained Naftiko capability covering one Symphony business surface.'
  tags:
  - Symphony
  - Datafeeds
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SYMPHONY_API_KEY: SYMPHONY_API_KEY
capability:
  consumes:
  - type: http
    namespace: agent-datafeeds
    baseUri: ''
    description: Symphony Agent API — Datafeeds business capability. Self-contained, no shared references.
    resources:
    - name: v5-datafeeds
      path: /v5/datafeeds
      operations:
      - name: listdatafeed
        method: GET
        description: Symphony Read List of Real Time Messages / Events Stream ("datafeed")
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sessionToken
          in: header
          type: string
          description: Session authentication token.
          required: true
        - name: keyManagerToken
          in: header
          type: string
          description: Key Manager authentication token.
          required: true
        - name: tag
          in: query
          type: string
          description: A unique identifier to ensure uniqueness of the datafeed. Used to restrict search.
      - name: createdatafeed
        method: POST
        description: Symphony Create a New Real Time Messages / Events Stream ("datafeed")
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sessionToken
          in: header
          type: string
          description: Session authentication token.
          required: true
        - name: keyManagerToken
          in: header
          type: string
          description: Key Manager authentication token.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: v5-datafeeds-datafeedId
      path: /v5/datafeeds/{datafeedId}
      operations:
      - name: deletedatafeed
        method: DELETE
        description: Symphony Delete the Specified Real Time Message / Event Stream ("datafeed")
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: datafeedId
          in: path
          type: string
          description: ID of the datafeed
          required: true
        - name: sessionToken
          in: header
          type: string
          description: Session authentication token.
          required: true
        - name: keyManagerToken
          in: header
          type: string
          description: Key Manager authentication token.
          required: true
    - name: v5-datafeeds-datafeedId-read
      path: /v5/datafeeds/{datafeedId}/read
      operations:
      - name: readdatafeed
        method: POST
        description: Symphony Read the Specified Real Time Message / Event Stream ("datafeed")
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: datafeedId
          in: path
          type: string
          description: ID of the datafeed
          required: true
        - name: sessionToken
          in: header
          type: string
          description: Session authentication token.
          required: true
        - name: keyManagerToken
          in: header
          type: string
          description: Key Manager authentication token.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
  exposes:
  - type: rest
    namespace: agent-datafeeds-rest
    port: 8080
    description: REST adapter for Symphony Agent API — Datafeeds. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v5/datafeeds
      name: v5-datafeeds
      description: REST surface for v5-datafeeds.
      operations:
      - method: GET
        name: listdatafeed
        description: Symphony Read List of Real Time Messages / Events Stream ("datafeed")
        call: agent-datafeeds.listdatafeed
        with:
          sessionToken: rest.sessionToken
          keyManagerToken: rest.keyManagerToken
          tag: rest.tag
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdatafeed
        description: Symphony Create a New Real Time Messages / Events Stream ("datafeed")
        call: agent-datafeeds.createdatafeed
        with:
          sessionToken: rest.sessionToken
          keyManagerToken: rest.keyManagerToken
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v5/datafeeds/{datafeedid}
      name: v5-datafeeds-datafeedid
      description: REST surface for v5-datafeeds-datafeedId.
      operations:
      - method: DELETE
        name: deletedatafeed
        description: Symphony Delete the Specified Real Time Message / Event Stream ("datafeed")
        call: agent-datafeeds.deletedatafeed
        with:
          datafeedId: rest.datafeedId
          sessionToken: rest.sessionToken
          keyManagerToken: rest.keyManagerToken
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v5/datafeeds/{datafeedid}/read
      name: v5-datafeeds-datafeedid-read
      description: REST surface for v5-datafeeds-datafeedId-read.
      operations:
      - method: POST
        name: readdatafeed
        description: Symphony Read the Specified Real Time Message / Event Stream ("datafeed")
        call: agent-datafeeds.readdatafeed
        with:
          datafeedId: rest.datafeedId
          sessionToken: rest.sessionToken
          keyManagerToken: rest.keyManagerToken
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agent-datafeeds-mcp
    port: 9090
    transport: http
    description: MCP adapter for Symphony Agent API — Datafeeds. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: symphony-read-list-real-time
      description: Symphony Read List of Real Time Messages / Events Stream ("datafeed")
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-datafeeds.listdatafeed
      with:
        sessionToken: tools.sessionToken
        keyManagerToken: tools.keyManagerToken
        tag: tools.tag
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-create-new-real-time
      description: Symphony Create a New Real Time Messages / Events Stream ("datafeed")
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-datafeeds.createdatafeed
      with:
        sessionToken: tools.sessionToken
        keyManagerToken: tools.keyManagerToken
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-delete-specified-real-time
      description: Symphony Delete the Specified Real Time Message / Event Stream ("datafeed")
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: agent-datafeeds.deletedatafeed
      with:
        datafeedId: tools.datafeedId
        sessionToken: tools.sessionToken
        keyManagerToken: tools.keyManagerToken
      outputParameters:
      - type: object
        mapping: $.
    - name: symphony-read-specified-real-time
      description: Symphony Read the Specified Real Time Message / Event Stream ("datafeed")
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-datafeeds.readdatafeed
      with:
        datafeedId: tools.datafeedId
        sessionToken: tools.sessionToken
        keyManagerToken: tools.keyManagerToken
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.