ScreenshotOne · Capability

ScreenshotOne API — Animations

ScreenshotOne API — Animations. 2 operations. Lead operation: Render an animated screenshot. Self-contained Naftiko capability covering one Screenshotone business surface.

Run with Naftiko ScreenshotoneAnimations

What You Can Do

GET
Get — Render an animated screenshot
/v1/animate
POST
Post — Render an animated screenshot (POST)
/v1/animate

MCP Tools

render-animated-screenshot

Render an animated screenshot

read-only idempotent
render-animated-screenshot-post

Render an animated screenshot (POST)

Capability Spec

screenshotone-animations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ScreenshotOne API — Animations
  description: 'ScreenshotOne API — Animations. 2 operations. Lead operation: Render an animated screenshot. Self-contained
    Naftiko capability covering one Screenshotone business surface.'
  tags:
  - Screenshotone
  - Animations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SCREENSHOTONE_API_KEY: SCREENSHOTONE_API_KEY
capability:
  consumes:
  - type: http
    namespace: screenshotone-animations
    baseUri: https://api.screenshotone.com
    description: ScreenshotOne API — Animations business capability. Self-contained, no shared references.
    resources:
    - name: animate
      path: /animate
      operations:
      - name: get
        method: GET
        description: Render an animated screenshot
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: scenario
          in: query
          type: string
          description: Animation scenario (default, scroll, navigation)
      - name: post
        method: POST
        description: Render an animated screenshot (POST)
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: access_key
      value: '{{env.SCREENSHOTONE_API_KEY}}'
      placement: query
  exposes:
  - type: rest
    namespace: screenshotone-animations-rest
    port: 8080
    description: REST adapter for ScreenshotOne API — Animations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/animate
      name: animate
      description: REST surface for animate.
      operations:
      - method: GET
        name: get
        description: Render an animated screenshot
        call: screenshotone-animations.get
        with:
          scenario: rest.scenario
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Render an animated screenshot (POST)
        call: screenshotone-animations.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: screenshotone-animations-mcp
    port: 9090
    transport: http
    description: MCP adapter for ScreenshotOne API — Animations. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: render-animated-screenshot
      description: Render an animated screenshot
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: screenshotone-animations.get
      with:
        scenario: tools.scenario
      outputParameters:
      - type: object
        mapping: $.
    - name: render-animated-screenshot-post
      description: Render an animated screenshot (POST)
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: screenshotone-animations.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.