RescueGroups.org · Capability

RescueGroups.org API — Organizations

RescueGroups.org API — Organizations. 2 operations. Lead operation: List Public Organizations. Self-contained Naftiko capability covering one Rescuegroups Org business surface.

Run with Naftiko Rescuegroups OrgOrganizations

What You Can Do

GET
Listpublicorgs — List Public Organizations
/v1/public/orgs
GET
Getpublicorg — Get Public Organization
/v1/public/orgs/{org-id}

MCP Tools

list-public-organizations

List Public Organizations

read-only idempotent
get-public-organization

Get Public Organization

read-only idempotent

Capability Spec

rescuegroups-org-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: RescueGroups.org API — Organizations
  description: 'RescueGroups.org API — Organizations. 2 operations. Lead operation: List Public Organizations. Self-contained
    Naftiko capability covering one Rescuegroups Org business surface.'
  tags:
  - Rescuegroups Org
  - Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RESCUEGROUPS_ORG_API_KEY: RESCUEGROUPS_ORG_API_KEY
capability:
  consumes:
  - type: http
    namespace: rescuegroups-org-organizations
    baseUri: https://api.rescuegroups.org/v5
    description: RescueGroups.org API — Organizations business capability. Self-contained, no shared references.
    resources:
    - name: public-orgs
      path: /public/orgs
      operations:
      - name: listpublicorgs
        method: GET
        description: List Public Organizations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: public-orgs-org_id
      path: /public/orgs/{org_id}
      operations:
      - name: getpublicorg
        method: GET
        description: Get Public Organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: org_id
          in: path
          type: string
          description: The unique organization identifier.
          required: true
    authentication:
      type: bearer
      token: '{{env.RESCUEGROUPS_ORG_API_KEY}}'
  exposes:
  - type: rest
    namespace: rescuegroups-org-organizations-rest
    port: 8080
    description: REST adapter for RescueGroups.org API — Organizations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/public/orgs
      name: public-orgs
      description: REST surface for public-orgs.
      operations:
      - method: GET
        name: listpublicorgs
        description: List Public Organizations
        call: rescuegroups-org-organizations.listpublicorgs
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/public/orgs/{org-id}
      name: public-orgs-org-id
      description: REST surface for public-orgs-org_id.
      operations:
      - method: GET
        name: getpublicorg
        description: Get Public Organization
        call: rescuegroups-org-organizations.getpublicorg
        with:
          org_id: rest.org_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rescuegroups-org-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for RescueGroups.org API — Organizations. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-public-organizations
      description: List Public Organizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rescuegroups-org-organizations.listpublicorgs
      outputParameters:
      - type: object
        mapping: $.
    - name: get-public-organization
      description: Get Public Organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rescuegroups-org-organizations.getpublicorg
      with:
        org_id: tools.org_id
      outputParameters:
      - type: object
        mapping: $.