GitHub · Capability

GitHub Projects API — Move

GitHub Projects API — Move. 2 operations. Lead operation: GitHub Move Project Card. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubMove

What You Can Do

POST
Moveprojectcard — GitHub Move Project Card
/v1/projects/columns/cards/{card-id}/moves
POST
Moveprojectcolumn — GitHub Move Project Column
/v1/projects/columns/{column-id}/moves

MCP Tools

github-move-project-card

GitHub Move Project Card

github-move-project-column

GitHub Move Project Column

Capability Spec

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