GitHub · Capability

github-repos-api — Update

github-repos-api — Update. 4 operations. Lead operation: GitHub Update Review Comment for Pull Request. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubUpdate

What You Can Do

PATCH
Updatereviewcommentforpullrequest — GitHub Update Review Comment for Pull Request
/v1/repos/{owner}/{repo}/pulls/comments/{comment-id}
PATCH
Updatepullrequest — GitHub Update Pull Request
/v1/repos/{owner}/{repo}/pulls/{pull-number}
PUT
Updatereviewforpullrequest — GitHub Update Review for Pull Request
/v1/repos/{owner}/{repo}/pulls/{pull-number}/reviews/{review-id}
PUT
Updatepullrequestbranch — GitHub Update Pull Request Branch
/v1/repos/{owner}/{repo}/pulls/{pull-number}/update-branch

MCP Tools

github-update-review-comment-pull

GitHub Update Review Comment for Pull Request

idempotent
github-update-pull-request

GitHub Update Pull Request

idempotent
github-update-review-pull-request

GitHub Update Review for Pull Request

idempotent
github-update-pull-request-branch

GitHub Update Pull Request Branch

idempotent

Capability Spec

repo-pulls-update.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: github-repos-api — Update
  description: 'github-repos-api — Update. 4 operations. Lead operation: GitHub Update Review Comment for Pull Request. Self-contained
    Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Update
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: repo-pulls-update
    baseUri: ''
    description: github-repos-api — Update business capability. Self-contained, no shared references.
    resources:
    - name: repos-owner-repo-pulls-comments-comment_id
      path: /repos/{owner}/{repo}/pulls/comments/{comment_id}
      operations:
      - name: updatereviewcommentforpullrequest
        method: PATCH
        description: GitHub Update Review Comment for Pull Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
        - name: X-GitHub-Api-Version
          in: header
          type: string
        - name: Accept
          in: header
          type: string
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: repos-owner-repo-pulls-pull_number
      path: /repos/{owner}/{repo}/pulls/{pull_number}
      operations:
      - name: updatepullrequest
        method: PATCH
        description: GitHub Update Pull Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
        - name: X-GitHub-Api-Version
          in: header
          type: string
        - name: Accept
          in: header
          type: string
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: repos-owner-repo-pulls-pull_number-reviews-review_id
      path: /repos/{owner}/{repo}/pulls/{pull_number}/reviews/{review_id}
      operations:
      - name: updatereviewforpullrequest
        method: PUT
        description: GitHub Update Review for Pull Request
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
        - name: X-GitHub-Api-Version
          in: header
          type: string
        - name: Accept
          in: header
          type: string
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: repos-owner-repo-pulls-pull_number-update-branch
      path: /repos/{owner}/{repo}/pulls/{pull_number}/update-branch
      operations:
      - name: updatepullrequestbranch
        method: PUT
        description: GitHub Update Pull Request Branch
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
        - name: X-GitHub-Api-Version
          in: header
          type: string
        - name: Accept
          in: header
          type: string
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.GITHUB_API_KEY}}'
  exposes:
  - type: rest
    namespace: repo-pulls-update-rest
    port: 8080
    description: REST adapter for github-repos-api — Update. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/repos/{owner}/{repo}/pulls/comments/{comment-id}
      name: repos-owner-repo-pulls-comments-comment-id
      description: REST surface for repos-owner-repo-pulls-comments-comment_id.
      operations:
      - method: PATCH
        name: updatereviewcommentforpullrequest
        description: GitHub Update Review Comment for Pull Request
        call: repo-pulls-update.updatereviewcommentforpullrequest
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/repos/{owner}/{repo}/pulls/{pull-number}
      name: repos-owner-repo-pulls-pull-number
      description: REST surface for repos-owner-repo-pulls-pull_number.
      operations:
      - method: PATCH
        name: updatepullrequest
        description: GitHub Update Pull Request
        call: repo-pulls-update.updatepullrequest
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/repos/{owner}/{repo}/pulls/{pull-number}/reviews/{review-id}
      name: repos-owner-repo-pulls-pull-number-reviews-review-id
      description: REST surface for repos-owner-repo-pulls-pull_number-reviews-review_id.
      operations:
      - method: PUT
        name: updatereviewforpullrequest
        description: GitHub Update Review for Pull Request
        call: repo-pulls-update.updatereviewforpullrequest
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/repos/{owner}/{repo}/pulls/{pull-number}/update-branch
      name: repos-owner-repo-pulls-pull-number-update-branch
      description: REST surface for repos-owner-repo-pulls-pull_number-update-branch.
      operations:
      - method: PUT
        name: updatepullrequestbranch
        description: GitHub Update Pull Request Branch
        call: repo-pulls-update.updatepullrequestbranch
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: repo-pulls-update-mcp
    port: 9090
    transport: http
    description: MCP adapter for github-repos-api — Update. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: github-update-review-comment-pull
      description: GitHub Update Review Comment for Pull Request
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: repo-pulls-update.updatereviewcommentforpullrequest
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-update-pull-request
      description: GitHub Update Pull Request
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: repo-pulls-update.updatepullrequest
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-update-review-pull-request
      description: GitHub Update Review for Pull Request
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: repo-pulls-update.updatereviewforpullrequest
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-update-pull-request-branch
      description: GitHub Update Pull Request Branch
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: repo-pulls-update.updatepullrequestbranch
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.