GitHub · Capability

GitHub Projects API — Column

GitHub Projects API — Column. 3 operations. Lead operation: GitHub Get Project Column. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubColumn

What You Can Do

GET
Getprojectcolumn — GitHub Get Project Column
/v1/projects/columns/{column-id}
PATCH
Updateanexistingprojectcolumn — GitHub Update an Existing Project Column
/v1/projects/columns/{column-id}
DELETE
Deleteprojectcolumn — GitHub Delete Project Column
/v1/projects/columns/{column-id}

MCP Tools

github-get-project-column

GitHub Get Project Column

read-only idempotent
github-update-existing-project-column

GitHub Update an Existing Project Column

idempotent
github-delete-project-column

GitHub Delete Project Column

idempotent

Capability Spec

projects-column.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub Projects API — Column
  description: 'GitHub Projects API — Column. 3 operations. Lead operation: GitHub Get Project Column. Self-contained Naftiko
    capability covering one Github business surface.'
  tags:
  - Github
  - Column
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: projects-column
    baseUri: ''
    description: GitHub Projects API — Column business capability. Self-contained, no shared references.
    resources:
    - name: projects-columns-column_id
      path: /projects/columns/{column_id}
      operations:
      - name: getprojectcolumn
        method: GET
        description: GitHub Get Project Column
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateanexistingprojectcolumn
        method: PATCH
        description: GitHub Update an Existing Project Column
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteprojectcolumn
        method: DELETE
        description: GitHub Delete Project Column
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.GITHUB_API_KEY}}'
  exposes:
  - type: rest
    namespace: projects-column-rest
    port: 8080
    description: REST adapter for GitHub Projects API — Column. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/projects/columns/{column-id}
      name: projects-columns-column-id
      description: REST surface for projects-columns-column_id.
      operations:
      - method: GET
        name: getprojectcolumn
        description: GitHub Get Project Column
        call: projects-column.getprojectcolumn
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateanexistingprojectcolumn
        description: GitHub Update an Existing Project Column
        call: projects-column.updateanexistingprojectcolumn
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteprojectcolumn
        description: GitHub Delete Project Column
        call: projects-column.deleteprojectcolumn
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: projects-column-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub Projects API — Column. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: github-get-project-column
      description: GitHub Get Project Column
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: projects-column.getprojectcolumn
      outputParameters:
      - type: object
        mapping: $.
    - name: github-update-existing-project-column
      description: GitHub Update an Existing Project Column
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: projects-column.updateanexistingprojectcolumn
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-delete-project-column
      description: GitHub Delete Project Column
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: projects-column.deleteprojectcolumn
      outputParameters:
      - type: object
        mapping: $.