Walt Disney · Capability

Disney Characters API — Characters

Disney Characters API — Characters. 2 operations. Lead operation: List All Characters. Self-contained Naftiko capability covering one Walt Disney business surface.

Run with Naftiko Walt DisneyCharacters

What You Can Do

GET
Listcharacters — List All Characters
/v1/character
GET
Getcharacterbyid — Get Character by ID
/v1/character/{id}

MCP Tools

list-all-characters

List All Characters

read-only idempotent
get-character-id

Get Character by ID

read-only idempotent

Capability Spec

disney-characters.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Disney Characters API — Characters
  description: 'Disney Characters API — Characters. 2 operations. Lead operation: List All Characters. Self-contained Naftiko
    capability covering one Walt Disney business surface.'
  tags:
  - Walt Disney
  - Characters
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WALT_DISNEY_API_KEY: WALT_DISNEY_API_KEY
capability:
  consumes:
  - type: http
    namespace: disney-characters
    baseUri: https://api.disneyapi.dev
    description: Disney Characters API — Characters business capability. Self-contained, no shared references.
    resources:
    - name: character
      path: /character
      operations:
      - name: listcharacters
        method: GET
        description: List All Characters
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          description: Page number for pagination
        - name: pageSize
          in: query
          type: integer
          description: Number of characters per page
    - name: character-id
      path: /character/{id}
      operations:
      - name: getcharacterbyid
        method: GET
        description: Get Character by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          description: Unique identifier of the Disney character
          required: true
  exposes:
  - type: rest
    namespace: disney-characters-rest
    port: 8080
    description: REST adapter for Disney Characters API — Characters. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/character
      name: character
      description: REST surface for character.
      operations:
      - method: GET
        name: listcharacters
        description: List All Characters
        call: disney-characters.listcharacters
        with:
          page: rest.page
          pageSize: rest.pageSize
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/character/{id}
      name: character-id
      description: REST surface for character-id.
      operations:
      - method: GET
        name: getcharacterbyid
        description: Get Character by ID
        call: disney-characters.getcharacterbyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: disney-characters-mcp
    port: 9090
    transport: http
    description: MCP adapter for Disney Characters API — Characters. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-all-characters
      description: List All Characters
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: disney-characters.listcharacters
      with:
        page: tools.page
        pageSize: tools.pageSize
      outputParameters:
      - type: object
        mapping: $.
    - name: get-character-id
      description: Get Character by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: disney-characters.getcharacterbyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.