Appium · Capability

Appium Server API — Actions

Appium Server API — Actions. 2 operations. Lead operation: Appium Perform Actions. Self-contained Naftiko capability covering one Appium business surface.

Run with Naftiko AppiumActions

What You Can Do

POST
Performactions — Appium Perform Actions
/v1/session/{sessionid}/actions
DELETE
Releaseactions — Appium Release Actions
/v1/session/{sessionid}/actions

MCP Tools

appium-perform-actions

Appium Perform Actions

appium-release-actions

Appium Release Actions

idempotent

Capability Spec

server-actions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Appium Server API — Actions
  description: 'Appium Server API — Actions. 2 operations. Lead operation: Appium Perform Actions. Self-contained Naftiko
    capability covering one Appium business surface.'
  tags:
  - Appium
  - Actions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPIUM_API_KEY: APPIUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: server-actions
    baseUri: http://localhost:4723
    description: Appium Server API — Actions business capability. Self-contained, no shared references.
    resources:
    - name: session-sessionId-actions
      path: /session/{sessionId}/actions
      operations:
      - name: performactions
        method: POST
        description: Appium Perform Actions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: releaseactions
        method: DELETE
        description: Appium Release Actions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: server-actions-rest
    port: 8080
    description: REST adapter for Appium Server API — Actions. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/session/{sessionid}/actions
      name: session-sessionid-actions
      description: REST surface for session-sessionId-actions.
      operations:
      - method: POST
        name: performactions
        description: Appium Perform Actions
        call: server-actions.performactions
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: releaseactions
        description: Appium Release Actions
        call: server-actions.releaseactions
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: server-actions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Appium Server API — Actions. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: appium-perform-actions
      description: Appium Perform Actions
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: server-actions.performactions
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: appium-release-actions
      description: Appium Release Actions
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: server-actions.releaseactions
      outputParameters:
      - type: object
        mapping: $.