WildApricot · Capability

WildApricot Admin API — Contacts.SavedSearch

WildApricot Admin API — Contacts.SavedSearch. 2 operations. Lead operation: WildApricot List of Saved Searches.. Self-contained Naftiko capability covering one Wildapricot business surface.

Run with Naftiko WildapricotContacts.SavedSearch

What You Can Do

GET
Getsavedsearcheslist — WildApricot List of Saved Searches.
/v1/accounts/{accountid}/savedsearches
GET
Getsavedsearchdetails — WildApricot Saved Search and Found Contacts.
/v1/accounts/{accountid}/savedsearches/{savedsearchid}

MCP Tools

wildapricot-list-saved-searches

WildApricot List of Saved Searches.

read-only idempotent
wildapricot-saved-search-and-found

WildApricot Saved Search and Found Contacts.

read-only idempotent

Capability Spec

admin-contacts-savedsearch.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WildApricot Admin API — Contacts.SavedSearch
  description: 'WildApricot Admin API — Contacts.SavedSearch. 2 operations. Lead operation: WildApricot List of Saved Searches..
    Self-contained Naftiko capability covering one Wildapricot business surface.'
  tags:
  - Wildapricot
  - Contacts.SavedSearch
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WILDAPRICOT_API_KEY: WILDAPRICOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-contacts-savedsearch
    baseUri: https://api.wildapricot.org/v2.2
    description: WildApricot Admin API — Contacts.SavedSearch business capability. Self-contained, no shared references.
    resources:
    - name: accounts-accountId-savedsearches
      path: /accounts/{accountId}/savedsearches
      operations:
      - name: getsavedsearcheslist
        method: GET
        description: WildApricot List of Saved Searches.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: accounts-accountId-savedsearches-savedSearchId
      path: /accounts/{accountId}/savedsearches/{savedSearchId}
      operations:
      - name: getsavedsearchdetails
        method: GET
        description: WildApricot Saved Search and Found Contacts.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: savedSearchId
          in: path
          type: integer
          description: Saved Search identifier
          required: true
        - name: excludeArchived
          in: query
          type: boolean
          description: exclude archived contacts from found ContactIDs.
        - name: $filter
          in: query
          type: string
          description: Filters the results of the Contacts API call so that only those records that match the filter criteria
            are included.
    authentication:
      type: bearer
      token: '{{env.WILDAPRICOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-contacts-savedsearch-rest
    port: 8080
    description: REST adapter for WildApricot Admin API — Contacts.SavedSearch. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/accounts/{accountid}/savedsearches
      name: accounts-accountid-savedsearches
      description: REST surface for accounts-accountId-savedsearches.
      operations:
      - method: GET
        name: getsavedsearcheslist
        description: WildApricot List of Saved Searches.
        call: admin-contacts-savedsearch.getsavedsearcheslist
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}/savedsearches/{savedsearchid}
      name: accounts-accountid-savedsearches-savedsearchid
      description: REST surface for accounts-accountId-savedsearches-savedSearchId.
      operations:
      - method: GET
        name: getsavedsearchdetails
        description: WildApricot Saved Search and Found Contacts.
        call: admin-contacts-savedsearch.getsavedsearchdetails
        with:
          savedSearchId: rest.savedSearchId
          excludeArchived: rest.excludeArchived
          $filter: rest.$filter
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-contacts-savedsearch-mcp
    port: 9090
    transport: http
    description: MCP adapter for WildApricot Admin API — Contacts.SavedSearch. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: wildapricot-list-saved-searches
      description: WildApricot List of Saved Searches.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-contacts-savedsearch.getsavedsearcheslist
      outputParameters:
      - type: object
        mapping: $.
    - name: wildapricot-saved-search-and-found
      description: WildApricot Saved Search and Found Contacts.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-contacts-savedsearch.getsavedsearchdetails
      with:
        savedSearchId: tools.savedSearchId
        excludeArchived: tools.excludeArchived
        $filter: tools.$filter
      outputParameters:
      - type: object
        mapping: $.