Seismic · Capability

Seismic Content API — Content Properties

Seismic Content API — Content Properties. 2 operations. Lead operation: List Content Properties. Self-contained Naftiko capability covering one Seismic business surface.

Run with Naftiko SeismicContent Properties

What You Can Do

GET
Listcontentproperties — List Content Properties
/v1/content-properties
GET
Getcontentproperty — Get a Content Property
/v1/content-properties/{propertyid}

MCP Tools

list-content-properties

List Content Properties

read-only idempotent
get-content-property

Get a Content Property

read-only idempotent

Capability Spec

content-content-properties.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Seismic Content API — Content Properties
  description: 'Seismic Content API — Content Properties. 2 operations. Lead operation: List Content Properties. Self-contained
    Naftiko capability covering one Seismic business surface.'
  tags:
  - Seismic
  - Content Properties
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SEISMIC_API_KEY: SEISMIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: content-content-properties
    baseUri: https://api.seismic.com/integration/v2
    description: Seismic Content API — Content Properties business capability. Self-contained, no shared references.
    resources:
    - name: content-properties
      path: /content-properties
      operations:
      - name: listcontentproperties
        method: GET
        description: List Content Properties
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: offset
          in: query
          type: integer
          description: Number of items to skip for pagination.
        - name: limit
          in: query
          type: integer
          description: Maximum number of items to return.
    - name: content-properties-propertyId
      path: /content-properties/{propertyId}
      operations:
      - name: getcontentproperty
        method: GET
        description: Get a Content Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: propertyId
          in: path
          type: string
          description: Unique identifier of the content property.
          required: true
    authentication:
      type: bearer
      token: '{{env.SEISMIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: content-content-properties-rest
    port: 8080
    description: REST adapter for Seismic Content API — Content Properties. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/content-properties
      name: content-properties
      description: REST surface for content-properties.
      operations:
      - method: GET
        name: listcontentproperties
        description: List Content Properties
        call: content-content-properties.listcontentproperties
        with:
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/content-properties/{propertyid}
      name: content-properties-propertyid
      description: REST surface for content-properties-propertyId.
      operations:
      - method: GET
        name: getcontentproperty
        description: Get a Content Property
        call: content-content-properties.getcontentproperty
        with:
          propertyId: rest.propertyId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: content-content-properties-mcp
    port: 9090
    transport: http
    description: MCP adapter for Seismic Content API — Content Properties. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-content-properties
      description: List Content Properties
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: content-content-properties.listcontentproperties
      with:
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: get-content-property
      description: Get a Content Property
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: content-content-properties.getcontentproperty
      with:
        propertyId: tools.propertyId
      outputParameters:
      - type: object
        mapping: $.