Clockodo · Capability

Clockodo API — LumpSumServices

Clockodo API — LumpSumServices. 2 operations. Lead operation: List lump-sum services. Self-contained Naftiko capability covering one Clockodo business surface.

Run with Naftiko ClockodoLumpSumServices

What You Can Do

GET
Listlumpsumservices — List lump-sum services
/v1/v2/lumpsumservices
POST
Createlumpsumservice — Create a lump-sum service
/v1/v2/lumpsumservices

MCP Tools

list-lump-sum-services

List lump-sum services

read-only idempotent
create-lump-sum-service

Create a lump-sum service

Capability Spec

clockodo-lumpsumservices.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Clockodo API — LumpSumServices
  description: 'Clockodo API — LumpSumServices. 2 operations. Lead operation: List lump-sum services. Self-contained Naftiko
    capability covering one Clockodo business surface.'
  tags:
  - Clockodo
  - LumpSumServices
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CLOCKODO_API_KEY: CLOCKODO_API_KEY
capability:
  consumes:
  - type: http
    namespace: clockodo-lumpsumservices
    baseUri: https://my.clockodo.com/api
    description: Clockodo API — LumpSumServices business capability. Self-contained, no shared references.
    resources:
    - name: v2-lumpsumservices
      path: /v2/lumpsumservices
      operations:
      - name: listlumpsumservices
        method: GET
        description: List lump-sum services
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createlumpsumservice
        method: POST
        description: Create a lump-sum service
        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-ClockodoApiKey
      value: '{{env.CLOCKODO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: clockodo-lumpsumservices-rest
    port: 8080
    description: REST adapter for Clockodo API — LumpSumServices. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v2/lumpsumservices
      name: v2-lumpsumservices
      description: REST surface for v2-lumpsumservices.
      operations:
      - method: GET
        name: listlumpsumservices
        description: List lump-sum services
        call: clockodo-lumpsumservices.listlumpsumservices
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createlumpsumservice
        description: Create a lump-sum service
        call: clockodo-lumpsumservices.createlumpsumservice
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: clockodo-lumpsumservices-mcp
    port: 9090
    transport: http
    description: MCP adapter for Clockodo API — LumpSumServices. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: list-lump-sum-services
      description: List lump-sum services
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: clockodo-lumpsumservices.listlumpsumservices
      outputParameters:
      - type: object
        mapping: $.
    - name: create-lump-sum-service
      description: Create a lump-sum service
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: clockodo-lumpsumservices.createlumpsumservice
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.