Saildrone · Capability

Saildrone Mission API — Authentication

Saildrone Mission API key/secret authentication and drone access discovery. 2 operations. Self-contained Naftiko capability covering one Saildrone business surface.

Saildrone Mission API — Authentication is a Naftiko capability published by Saildrone, one of 3 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the POST and GET methods rooted at /v1/v1/auth.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: Saildrone Authenticate With Key And Secret. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Saildrone and Authentication.

Run with Naftiko SaildroneAuthentication

What You Can Do

POST
Authenticate — Saildrone Authenticate With Key And Secret
/v1/v1/auth
GET
Listaccess — Saildrone List Drone Access
/v1/v1/auth/access

MCP Tools

saildrone-authenticate

Saildrone Authenticate With Key And Secret

saildrone-list-drone-access

Saildrone List Drone Access

read-only idempotent

Capability Spec

mission-authentication.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Saildrone Mission API — Authentication
  description: Saildrone Mission API key/secret authentication and drone access discovery. 2 operations. Self-contained Naftiko capability covering one Saildrone business surface.
  tags:
    - Saildrone
    - Authentication
  created: '2026-05-24'
  modified: '2026-05-24'
binds:
  - namespace: env
    keys:
      SAILDRONE_KEY: SAILDRONE_KEY
      SAILDRONE_SECRET: SAILDRONE_SECRET
capability:
  consumes:
    - type: http
      namespace: mission-authentication
      baseUri: https://developer-mission.saildrone.com
      description: Saildrone Mission API — Authentication business capability. Self-contained, no shared references.
      resources:
        - name: v1-auth
          path: /v1/auth
          operations:
            - name: authenticate
              method: POST
              description: Saildrone Authenticate With Key And Secret
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
              inputParameters:
                - name: body
                  in: body
                  type: object
                  description: Request body containing key and secret.
                  required: true
        - name: v1-auth-access
          path: /v1/auth/access
          operations:
            - name: listaccess
              method: GET
              description: Saildrone List Drone Access
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
      authentication:
        type: bearer
        placement: header
        key: authorization
        value: '{{token}}'
  exposes:
    - type: rest
      namespace: mission-authentication-rest
      port: 8080
      description: REST adapter for Saildrone Mission API — Authentication.
      resources:
        - path: /v1/v1/auth
          name: v1-auth
          description: REST surface for v1-auth.
          operations:
            - method: POST
              name: authenticate
              description: Saildrone Authenticate With Key And Secret
              call: mission-authentication.authenticate
              with:
                body: rest.body
              outputParameters:
                - type: object
                  mapping: $.
        - path: /v1/v1/auth/access
          name: v1-auth-access
          description: REST surface for v1-auth-access.
          operations:
            - method: GET
              name: listaccess
              description: Saildrone List Drone Access
              call: mission-authentication.listaccess
              outputParameters:
                - type: object
                  mapping: $.
    - type: mcp
      namespace: mission-authentication-mcp
      port: 9090
      transport: http
      description: MCP adapter for Saildrone Mission API — Authentication.
      tools:
        - name: saildrone-authenticate
          description: Saildrone Authenticate With Key And Secret
          hints:
            readOnly: false
            destructive: false
            idempotent: false
          call: mission-authentication.authenticate
          with:
            body: tools.body
          outputParameters:
            - type: object
              mapping: $.
        - name: saildrone-list-drone-access
          description: Saildrone List Drone Access
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: mission-authentication.listaccess
          outputParameters:
            - type: object
              mapping: $.