WildApricot · Capability

WildApricot Admin API — Accounts

WildApricot Admin API — Accounts. 3 operations. Lead operation: WildApricot Base URL for Specific API Version.. Self-contained Naftiko capability covering one Wildapricot business surface.

Run with Naftiko WildapricotAccounts

What You Can Do

GET
Getapiresources — WildApricot Base URL for Specific API Version.
/v1
GET
Getaccountslist — WildApricot List of Available Accounts
/v1/accounts
GET
Getaccount — WildApricot Details for Specific Account
/v1/accounts/{accountid}

MCP Tools

wildapricot-base-url-specific-api

WildApricot Base URL for Specific API Version.

read-only idempotent
wildapricot-list-available-accounts

WildApricot List of Available Accounts

read-only idempotent
wildapricot-details-specific-account

WildApricot Details for Specific Account

read-only idempotent

Capability Spec

admin-accounts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WildApricot Admin API — Accounts
  description: 'WildApricot Admin API — Accounts. 3 operations. Lead operation: WildApricot Base URL for Specific API Version..
    Self-contained Naftiko capability covering one Wildapricot business surface.'
  tags:
  - Wildapricot
  - Accounts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WILDAPRICOT_API_KEY: WILDAPRICOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-accounts
    baseUri: https://api.wildapricot.org/v2.2
    description: WildApricot Admin API — Accounts business capability. Self-contained, no shared references.
    resources:
    - name: root
      path: /
      operations:
      - name: getapiresources
        method: GET
        description: WildApricot Base URL for Specific API Version.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: accounts
      path: /accounts
      operations:
      - name: getaccountslist
        method: GET
        description: WildApricot List of Available Accounts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: accounts-accountId
      path: /accounts/{accountId}
      operations:
      - name: getaccount
        method: GET
        description: WildApricot Details for Specific Account
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.WILDAPRICOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-accounts-rest
    port: 8080
    description: REST adapter for WildApricot Admin API — Accounts. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1
      name: root
      description: REST surface for root.
      operations:
      - method: GET
        name: getapiresources
        description: WildApricot Base URL for Specific API Version.
        call: admin-accounts.getapiresources
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts
      name: accounts
      description: REST surface for accounts.
      operations:
      - method: GET
        name: getaccountslist
        description: WildApricot List of Available Accounts
        call: admin-accounts.getaccountslist
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}
      name: accounts-accountid
      description: REST surface for accounts-accountId.
      operations:
      - method: GET
        name: getaccount
        description: WildApricot Details for Specific Account
        call: admin-accounts.getaccount
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-accounts-mcp
    port: 9090
    transport: http
    description: MCP adapter for WildApricot Admin API — Accounts. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: wildapricot-base-url-specific-api
      description: WildApricot Base URL for Specific API Version.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-accounts.getapiresources
      outputParameters:
      - type: object
        mapping: $.
    - name: wildapricot-list-available-accounts
      description: WildApricot List of Available Accounts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-accounts.getaccountslist
      outputParameters:
      - type: object
        mapping: $.
    - name: wildapricot-details-specific-account
      description: WildApricot Details for Specific Account
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-accounts.getaccount
      outputParameters:
      - type: object
        mapping: $.