ShipStation · Capability

ShipStation V1 API — Accounts

ShipStation V1 API — Accounts. 2 operations. Lead operation: Create Tag. Self-contained Naftiko capability covering one Shipstation business surface.

Run with Naftiko ShipstationAccounts

What You Can Do

POST
Createtag — Create Tag
/v1/accounts/createtag
GET
Listtags — List Tags
/v1/accounts/listtags

MCP Tools

create-tag

Create Tag

list-tags

List Tags

read-only idempotent

Capability Spec

v1-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ShipStation V1 API — Accounts
  description: 'ShipStation V1 API — Accounts. 2 operations. Lead operation: Create Tag. Self-contained Naftiko capability
    covering one Shipstation business surface.'
  tags:
  - Shipstation
  - Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SHIPSTATION_API_KEY: SHIPSTATION_API_KEY
capability:
  consumes:
  - type: http
    namespace: v1-accounts
    baseUri: https://ssapi.shipstation.com
    description: ShipStation V1 API — Accounts business capability. Self-contained, no shared references.
    resources:
    - name: accounts-createtag
      path: /accounts/createtag
      operations:
      - name: createtag
        method: POST
        description: Create Tag
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: accounts-listtags
      path: /accounts/listtags
      operations:
      - name: listtags
        method: GET
        description: List Tags
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: basic
      username: '{{env.SHIPSTATION_USER}}'
      password: '{{env.SHIPSTATION_PASS}}'
  exposes:
  - type: rest
    namespace: v1-accounts-rest
    port: 8080
    description: REST adapter for ShipStation V1 API — Accounts. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/accounts/createtag
      name: accounts-createtag
      description: REST surface for accounts-createtag.
      operations:
      - method: POST
        name: createtag
        description: Create Tag
        call: v1-accounts.createtag
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/listtags
      name: accounts-listtags
      description: REST surface for accounts-listtags.
      operations:
      - method: GET
        name: listtags
        description: List Tags
        call: v1-accounts.listtags
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: v1-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for ShipStation V1 API — Accounts. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: create-tag
      description: Create Tag
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: v1-accounts.createtag
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-tags
      description: List Tags
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: v1-accounts.listtags
      outputParameters:
      - type: object
        mapping: $.