Appium · Capability

Appium Server API — Server

Appium Server API — Server. 2 operations. Lead operation: Appium Get All Sessions. Self-contained Naftiko capability covering one Appium business surface.

Run with Naftiko AppiumServer

What You Can Do

GET
Getappiumsessions — Appium Get All Sessions
/v1/appium/sessions
GET
Getstatus — Appium Get Server Status
/v1/status

MCP Tools

appium-get-all-sessions

Appium Get All Sessions

read-only idempotent
appium-get-server-status

Appium Get Server Status

read-only idempotent

Capability Spec

server-server.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Appium Server API — Server
  description: 'Appium Server API — Server. 2 operations. Lead operation: Appium Get All Sessions. Self-contained Naftiko
    capability covering one Appium business surface.'
  tags:
  - Appium
  - Server
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPIUM_API_KEY: APPIUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: server-server
    baseUri: http://localhost:4723
    description: Appium Server API — Server business capability. Self-contained, no shared references.
    resources:
    - name: appium-sessions
      path: /appium/sessions
      operations:
      - name: getappiumsessions
        method: GET
        description: Appium Get All Sessions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: status
      path: /status
      operations:
      - name: getstatus
        method: GET
        description: Appium Get Server Status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: server-server-rest
    port: 8080
    description: REST adapter for Appium Server API — Server. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/appium/sessions
      name: appium-sessions
      description: REST surface for appium-sessions.
      operations:
      - method: GET
        name: getappiumsessions
        description: Appium Get All Sessions
        call: server-server.getappiumsessions
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/status
      name: status
      description: REST surface for status.
      operations:
      - method: GET
        name: getstatus
        description: Appium Get Server Status
        call: server-server.getstatus
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: server-server-mcp
    port: 9090
    transport: http
    description: MCP adapter for Appium Server API — Server. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: appium-get-all-sessions
      description: Appium Get All Sessions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: server-server.getappiumsessions
      outputParameters:
      - type: object
        mapping: $.
    - name: appium-get-server-status
      description: Appium Get Server Status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: server-server.getstatus
      outputParameters:
      - type: object
        mapping: $.