SingularityNET · Capability

SingularityNET Marketplace API — Organizations

SingularityNET Marketplace API — Organizations. 2 operations. Lead operation: List Organizations. Self-contained Naftiko capability covering one Singularity Net business surface.

Run with Naftiko Singularity NetOrganizations

What You Can Do

GET
Listorganizations — List Organizations
/v1/org
GET
Getorganization — Get Organization
/v1/org/{org-id}

MCP Tools

list-organizations

List Organizations

read-only idempotent
get-organization

Get Organization

read-only idempotent

Capability Spec

singularitynet-marketplace-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SingularityNET Marketplace API — Organizations
  description: 'SingularityNET Marketplace API — Organizations. 2 operations. Lead operation: List Organizations. Self-contained
    Naftiko capability covering one Singularity Net business surface.'
  tags:
  - Singularity Net
  - Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SINGULARITY_NET_API_KEY: SINGULARITY_NET_API_KEY
capability:
  consumes:
  - type: http
    namespace: singularitynet-marketplace-organizations
    baseUri: https://marketplace-mt-v2.singularitynet.io
    description: SingularityNET Marketplace API — Organizations business capability. Self-contained, no shared references.
    resources:
    - name: org
      path: /org
      operations:
      - name: listorganizations
        method: GET
        description: List Organizations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: integer
          description: Number of organizations to return
        - name: offset
          in: query
          type: integer
          description: Pagination offset
    - name: org-org_id
      path: /org/{org_id}
      operations:
      - name: getorganization
        method: GET
        description: Get Organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: org_id
          in: path
          type: string
          description: Unique organization identifier
          required: true
  exposes:
  - type: rest
    namespace: singularitynet-marketplace-organizations-rest
    port: 8080
    description: REST adapter for SingularityNET Marketplace API — Organizations. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/org
      name: org
      description: REST surface for org.
      operations:
      - method: GET
        name: listorganizations
        description: List Organizations
        call: singularitynet-marketplace-organizations.listorganizations
        with:
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/org/{org-id}
      name: org-org-id
      description: REST surface for org-org_id.
      operations:
      - method: GET
        name: getorganization
        description: Get Organization
        call: singularitynet-marketplace-organizations.getorganization
        with:
          org_id: rest.org_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: singularitynet-marketplace-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for SingularityNET Marketplace API — Organizations. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-organizations
      description: List Organizations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: singularitynet-marketplace-organizations.listorganizations
      with:
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: get-organization
      description: Get Organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: singularitynet-marketplace-organizations.getorganization
      with:
        org_id: tools.org_id
      outputParameters:
      - type: object
        mapping: $.