Fulcrum · Capability

Fulcrum API — Projects

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

Run with Naftiko FulcrumProjects

What You Can Do

GET
Listprojects — List projects
/v1/projects-json
POST
Createproject — Create project
/v1/projects-json
GET
Getproject — Get project
/v1/projects/id-json
PUT
Updateproject — Update project
/v1/projects/id-json
DELETE
Deleteproject — Delete project
/v1/projects/id-json

MCP Tools

list-projects

List projects

read-only idempotent
create-project

Create project

get-project

Get project

read-only idempotent
update-project

Update project

idempotent
delete-project

Delete project

idempotent

Capability Spec

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