GitHub · Capability

github-repos-api — Contents

github-repos-api — Contents. 3 operations. Lead operation: GitHub Get Repository Content. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubContents

What You Can Do

GET
Getrepositorycontent — GitHub Get Repository Content
/v1/repos/{owner}/{repo}/contents/{path}
PUT
Createorupdatefilecontents — GitHub Create or Update File Contents
/v1/repos/{owner}/{repo}/contents/{path}
DELETE
Deletefile — GitHub Delete File
/v1/repos/{owner}/{repo}/contents/{path}

MCP Tools

github-get-repository-content

GitHub Get Repository Content

read-only idempotent
github-create-update-file-contents

GitHub Create or Update File Contents

idempotent
github-delete-file

GitHub Delete File

idempotent

Capability Spec

repos-contents.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: github-repos-api — Contents
  description: 'github-repos-api — Contents. 3 operations. Lead operation: GitHub Get Repository Content. Self-contained Naftiko
    capability covering one Github business surface.'
  tags:
  - Github
  - Contents
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: repos-contents
    baseUri: http://localhost:8080/rest/github-repos-api/1.1.4
    description: github-repos-api — Contents business capability. Self-contained, no shared references.
    resources:
    - name: repos-owner-repo-contents-path
      path: /repos/{owner}/{repo}/contents/{path}
      operations:
      - name: getrepositorycontent
        method: GET
        description: GitHub Get Repository Content
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: path
          in: path
          type: string
          description: path parameter
          required: true
        - name: ref
          in: query
          type: string
          description: 'The name of the commit/branch/tag. Default: the repositorys default branch.'
        - name: Authorization
          in: header
          type: string
        - name: X-GitHub-Api-Version
          in: header
          type: string
        - name: Accept
          in: header
          type: string
      - name: createorupdatefilecontents
        method: PUT
        description: GitHub Create or Update File Contents
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: path
          in: path
          type: string
          description: path parameter
          required: true
        - 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: deletefile
        method: DELETE
        description: GitHub Delete File
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: path
          in: path
          type: string
          description: path parameter
          required: true
        - 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
    authentication:
      type: bearer
      token: '{{env.GITHUB_API_KEY}}'
  exposes:
  - type: rest
    namespace: repos-contents-rest
    port: 8080
    description: REST adapter for github-repos-api — Contents. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/repos/{owner}/{repo}/contents/{path}
      name: repos-owner-repo-contents-path
      description: REST surface for repos-owner-repo-contents-path.
      operations:
      - method: GET
        name: getrepositorycontent
        description: GitHub Get Repository Content
        call: repos-contents.getrepositorycontent
        with:
          path: rest.path
          ref: rest.ref
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: createorupdatefilecontents
        description: GitHub Create or Update File Contents
        call: repos-contents.createorupdatefilecontents
        with:
          path: rest.path
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletefile
        description: GitHub Delete File
        call: repos-contents.deletefile
        with:
          path: rest.path
          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: repos-contents-mcp
    port: 9090
    transport: http
    description: MCP adapter for github-repos-api — Contents. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: github-get-repository-content
      description: GitHub Get Repository Content
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repos-contents.getrepositorycontent
      with:
        path: tools.path
        ref: tools.ref
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-create-update-file-contents
      description: GitHub Create or Update File Contents
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: repos-contents.createorupdatefilecontents
      with:
        path: tools.path
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-delete-file
      description: GitHub Delete File
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: repos-contents.deletefile
      with:
        path: tools.path
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.