Apideck · Capability

Apideck Accounting API — Projects

Apideck Accounting API — Projects. 5 operations. Lead operation: Apideck List projects. Self-contained Naftiko capability covering one Apideck business surface.

Run with Naftiko ApideckProjects

What You Can Do

GET
Projectsall — Apideck List projects
/v1/accounting/projects
POST
Projectsadd — Apideck Create project
/v1/accounting/projects
GET
Projectsone — Apideck Get project
/v1/accounting/projects/{id}
PATCH
Projectsupdate — Apideck Update project
/v1/accounting/projects/{id}
DELETE
Projectsdelete — Apideck Delete project
/v1/accounting/projects/{id}

MCP Tools

apideck-list-projects

Apideck List projects

read-only idempotent
apideck-create-project

Apideck Create project

apideck-get-project

Apideck Get project

read-only idempotent
apideck-update-project

Apideck Update project

idempotent
apideck-delete-project

Apideck Delete project

idempotent

Capability Spec

accounting-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apideck Accounting API — Projects
  description: 'Apideck Accounting API — Projects. 5 operations. Lead operation: Apideck List projects. Self-contained Naftiko
    capability covering one Apideck business surface.'
  tags:
  - Apideck
  - Projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIDECK_API_KEY: APIDECK_API_KEY
capability:
  consumes:
  - type: http
    namespace: accounting-projects
    baseUri: https://unify.apideck.com
    description: Apideck Accounting API — Projects business capability. Self-contained, no shared references.
    resources:
    - name: accounting-projects
      path: /accounting/projects
      operations:
      - name: projectsall
        method: GET
        description: Apideck List projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: projectsadd
        method: POST
        description: Apideck Create project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: accounting-projects-id
      path: /accounting/projects/{id}
      operations:
      - name: projectsone
        method: GET
        description: Apideck Get project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: projectsupdate
        method: PATCH
        description: Apideck Update project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: projectsdelete
        method: DELETE
        description: Apideck Delete project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.APIDECK_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: accounting-projects-rest
    port: 8080
    description: REST adapter for Apideck Accounting API — Projects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/accounting/projects
      name: accounting-projects
      description: REST surface for accounting-projects.
      operations:
      - method: GET
        name: projectsall
        description: Apideck List projects
        call: accounting-projects.projectsall
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: projectsadd
        description: Apideck Create project
        call: accounting-projects.projectsadd
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounting/projects/{id}
      name: accounting-projects-id
      description: REST surface for accounting-projects-id.
      operations:
      - method: GET
        name: projectsone
        description: Apideck Get project
        call: accounting-projects.projectsone
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: projectsupdate
        description: Apideck Update project
        call: accounting-projects.projectsupdate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: projectsdelete
        description: Apideck Delete project
        call: accounting-projects.projectsdelete
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: accounting-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apideck Accounting API — Projects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apideck-list-projects
      description: Apideck List projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: accounting-projects.projectsall
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-create-project
      description: Apideck Create project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: accounting-projects.projectsadd
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-get-project
      description: Apideck Get project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: accounting-projects.projectsone
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-update-project
      description: Apideck Update project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: accounting-projects.projectsupdate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-delete-project
      description: Apideck Delete project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: accounting-projects.projectsdelete
      outputParameters:
      - type: object
        mapping: $.