GitHub · Capability

GitHub Repos API — Content

GitHub Repos API — Content. 2 operations. Lead operation: Get Repository Content. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubContent

What You Can Do

GET
Getrepositorycontent — Get Repository Content
/v1/repos/{owner}/{repo}/contents/{path}
POST
Generatereleasenotescontentforrelease — Generate Release Notes Content For Release
/v1/repos/{owner}/{repo}/releases/generate-notes

MCP Tools

get-repository-content

Get Repository Content

read-only idempotent
generate-release-notes-content-release

Generate Release Notes Content For Release

Capability Spec

temp-content.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub Repos API — Content
  description: 'GitHub Repos API — Content. 2 operations. Lead operation: Get Repository Content. Self-contained Naftiko capability
    covering one Github business surface.'
  tags:
  - Github
  - Content
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: temp-content
    baseUri: ''
    description: GitHub Repos API — Content 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: 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: repos-owner-repo-releases-generate-notes
      path: /repos/{owner}/{repo}/releases/generate-notes
      operations:
      - name: generatereleasenotescontentforrelease
        method: POST
        description: Generate Release Notes Content For Release
        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
    authentication:
      type: bearer
      token: '{{env.GITHUB_API_KEY}}'
  exposes:
  - type: rest
    namespace: temp-content-rest
    port: 8080
    description: REST adapter for GitHub Repos API — Content. 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: Get Repository Content
        call: temp-content.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: $.
    - path: /v1/repos/{owner}/{repo}/releases/generate-notes
      name: repos-owner-repo-releases-generate-notes
      description: REST surface for repos-owner-repo-releases-generate-notes.
      operations:
      - method: POST
        name: generatereleasenotescontentforrelease
        description: Generate Release Notes Content For Release
        call: temp-content.generatereleasenotescontentforrelease
        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: temp-content-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub Repos API — Content. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: get-repository-content
      description: Get Repository Content
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: temp-content.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: generate-release-notes-content-release
      description: Generate Release Notes Content For Release
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: temp-content.generatereleasenotescontentforrelease
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.