GitHub · Capability

github-repo-actions-api — Variables

github-repo-actions-api — Variables. 6 operations. Lead operation: GitHub List Repository Organization Variables. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubVariables

What You Can Do

GET
Listrepositoryorganizationvariables — GitHub List Repository Organization Variables
/v1/repos/{owner}/{repo}/actions/organization-variables
GET
Listrepositoryvariables — GitHub List Repository Variables
/v1/repos/{owner}/{repo}/actions/variables
POST
Createrepositoryvariable — GitHub Create Repository Variable
/v1/repos/{owner}/{repo}/actions/variables
GET
Getrepositoryvariable — GitHub Get Repository Variable
/v1/repos/{owner}/{repo}/actions/variables/{name}
PATCH
Updaterepositoryvariable — GitHub Update Repository Variable
/v1/repos/{owner}/{repo}/actions/variables/{name}
DELETE
Deleterepositoryvariable — GitHub Delete Repository Variable
/v1/repos/{owner}/{repo}/actions/variables/{name}

MCP Tools

github-list-repository-organization-variables

GitHub List Repository Organization Variables

read-only idempotent
github-list-repository-variables

GitHub List Repository Variables

read-only idempotent
github-create-repository-variable

GitHub Create Repository Variable

github-get-repository-variable

GitHub Get Repository Variable

read-only idempotent
github-update-repository-variable

GitHub Update Repository Variable

idempotent
github-delete-repository-variable

GitHub Delete Repository Variable

idempotent

Capability Spec

repo-actions-variables.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: github-repo-actions-api — Variables
  description: 'github-repo-actions-api — Variables. 6 operations. Lead operation: GitHub List Repository Organization Variables.
    Self-contained Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Variables
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: repo-actions-variables
    baseUri: ''
    description: github-repo-actions-api — Variables business capability. Self-contained, no shared references.
    resources:
    - name: repos-owner-repo-actions-organization-variables
      path: /repos/{owner}/{repo}/actions/organization-variables
      operations:
      - name: listrepositoryorganizationvariables
        method: GET
        description: GitHub List Repository Organization Variables
        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: repos-owner-repo-actions-variables
      path: /repos/{owner}/{repo}/actions/variables
      operations:
      - name: listrepositoryvariables
        method: GET
        description: GitHub List Repository Variables
        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: createrepositoryvariable
        method: POST
        description: GitHub Create Repository Variable
        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-actions-variables-name
      path: /repos/{owner}/{repo}/actions/variables/{name}
      operations:
      - name: getrepositoryvariable
        method: GET
        description: GitHub Get Repository Variable
        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: updaterepositoryvariable
        method: PATCH
        description: GitHub Update Repository Variable
        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: deleterepositoryvariable
        method: DELETE
        description: GitHub Delete Repository Variable
        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
    authentication:
      type: bearer
      token: '{{env.GITHUB_API_KEY}}'
  exposes:
  - type: rest
    namespace: repo-actions-variables-rest
    port: 8080
    description: REST adapter for github-repo-actions-api — Variables. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/repos/{owner}/{repo}/actions/organization-variables
      name: repos-owner-repo-actions-organization-variables
      description: REST surface for repos-owner-repo-actions-organization-variables.
      operations:
      - method: GET
        name: listrepositoryorganizationvariables
        description: GitHub List Repository Organization Variables
        call: repo-actions-variables.listrepositoryorganizationvariables
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/repos/{owner}/{repo}/actions/variables
      name: repos-owner-repo-actions-variables
      description: REST surface for repos-owner-repo-actions-variables.
      operations:
      - method: GET
        name: listrepositoryvariables
        description: GitHub List Repository Variables
        call: repo-actions-variables.listrepositoryvariables
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createrepositoryvariable
        description: GitHub Create Repository Variable
        call: repo-actions-variables.createrepositoryvariable
        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}/actions/variables/{name}
      name: repos-owner-repo-actions-variables-name
      description: REST surface for repos-owner-repo-actions-variables-name.
      operations:
      - method: GET
        name: getrepositoryvariable
        description: GitHub Get Repository Variable
        call: repo-actions-variables.getrepositoryvariable
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updaterepositoryvariable
        description: GitHub Update Repository Variable
        call: repo-actions-variables.updaterepositoryvariable
        with:
          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: deleterepositoryvariable
        description: GitHub Delete Repository Variable
        call: repo-actions-variables.deleterepositoryvariable
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: repo-actions-variables-mcp
    port: 9090
    transport: http
    description: MCP adapter for github-repo-actions-api — Variables. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: github-list-repository-organization-variables
      description: GitHub List Repository Organization Variables
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repo-actions-variables.listrepositoryorganizationvariables
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-list-repository-variables
      description: GitHub List Repository Variables
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repo-actions-variables.listrepositoryvariables
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-create-repository-variable
      description: GitHub Create Repository Variable
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: repo-actions-variables.createrepositoryvariable
      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-get-repository-variable
      description: GitHub Get Repository Variable
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repo-actions-variables.getrepositoryvariable
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-update-repository-variable
      description: GitHub Update Repository Variable
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: repo-actions-variables.updaterepositoryvariable
      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-delete-repository-variable
      description: GitHub Delete Repository Variable
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: repo-actions-variables.deleterepositoryvariable
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.