Grapes Finance · Capability

Grapes Finance API — Organizations

Grapes Finance API — Organizations. 2 operations. Lead operation: List organizations. Self-contained Naftiko capability covering one Grapes Finance business surface.

Run with Naftiko Grapes FinanceOrganizations

What You Can Do

GET
Get — List organizations
/v1/organizations
POST
Post — Create organization
/v1/organizations

MCP Tools

list-organizations

List organizations

read-only idempotent
create-organization

Create organization

Capability Spec

grapes-finance-organizations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Grapes Finance API — Organizations
  description: 'Grapes Finance API — Organizations. 2 operations. Lead operation: List organizations. Self-contained Naftiko
    capability covering one Grapes Finance business surface.'
  tags:
  - Grapes Finance
  - Organizations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GRAPES_FINANCE_API_KEY: GRAPES_FINANCE_API_KEY
capability:
  consumes:
  - type: http
    namespace: grapes-finance-organizations
    baseUri: https://api.demo.grapesfinance.com
    description: Grapes Finance API — Organizations business capability. Self-contained, no shared references.
    resources:
    - name: organizations
      path: /organizations
      operations:
      - name: get
        method: GET
        description: List organizations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: post
        method: POST
        description: Create organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.GRAPES_FINANCE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: grapes-finance-organizations-rest
    port: 8080
    description: REST adapter for Grapes Finance API — Organizations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organizations
      name: organizations
      description: REST surface for organizations.
      operations:
      - method: GET
        name: get
        description: List organizations
        call: grapes-finance-organizations.get
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Create organization
        call: grapes-finance-organizations.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: grapes-finance-organizations-mcp
    port: 9090
    transport: http
    description: MCP adapter for Grapes Finance 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: grapes-finance-organizations.get
      outputParameters:
      - type: object
        mapping: $.
    - name: create-organization
      description: Create organization
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: grapes-finance-organizations.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.