Workato · Capability

Workato Agent Studio API — Skills

Workato Agent Studio API — Skills. 3 operations. Lead operation: Workato List Skills. Self-contained Naftiko capability covering one Workato business surface.

Run with Naftiko WorkatoSkills

What You Can Do

GET
Listskills — Workato List Skills
/v1/api/agentic/skills
POST
Createskill — Workato Create a Skill
/v1/api/agentic/skills
GET
Getskill — Workato Get a Skill
/v1/api/agentic/skills/{id}

MCP Tools

workato-list-skills

Workato List Skills

read-only idempotent
workato-create-skill

Workato Create a Skill

workato-get-skill

Workato Get a Skill

read-only idempotent

Capability Spec

agent-studio-skills.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Workato Agent Studio API — Skills
  description: 'Workato Agent Studio API — Skills. 3 operations. Lead operation: Workato List Skills. Self-contained Naftiko
    capability covering one Workato business surface.'
  tags:
  - Workato
  - Skills
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WORKATO_API_KEY: WORKATO_API_KEY
capability:
  consumes:
  - type: http
    namespace: agent-studio-skills
    baseUri: https://www.workato.com
    description: Workato Agent Studio API — Skills business capability. Self-contained, no shared references.
    resources:
    - name: api-agentic-skills
      path: /api/agentic/skills
      operations:
      - name: listskills
        method: GET
        description: Workato List Skills
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createskill
        method: POST
        description: Workato Create a Skill
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-agentic-skills-id
      path: /api/agentic/skills/{id}
      operations:
      - name: getskill
        method: GET
        description: Workato Get a Skill
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WORKATO_API_KEY}}'
  exposes:
  - type: rest
    namespace: agent-studio-skills-rest
    port: 8080
    description: REST adapter for Workato Agent Studio API — Skills. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/agentic/skills
      name: api-agentic-skills
      description: REST surface for api-agentic-skills.
      operations:
      - method: GET
        name: listskills
        description: Workato List Skills
        call: agent-studio-skills.listskills
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createskill
        description: Workato Create a Skill
        call: agent-studio-skills.createskill
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/agentic/skills/{id}
      name: api-agentic-skills-id
      description: REST surface for api-agentic-skills-id.
      operations:
      - method: GET
        name: getskill
        description: Workato Get a Skill
        call: agent-studio-skills.getskill
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: agent-studio-skills-mcp
    port: 9090
    transport: http
    description: MCP adapter for Workato Agent Studio API — Skills. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: workato-list-skills
      description: Workato List Skills
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-studio-skills.listskills
      outputParameters:
      - type: object
        mapping: $.
    - name: workato-create-skill
      description: Workato Create a Skill
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: agent-studio-skills.createskill
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: workato-get-skill
      description: Workato Get a Skill
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: agent-studio-skills.getskill
      outputParameters:
      - type: object
        mapping: $.