GitHub · Capability

GitHub Repos API — Administrative

GitHub Repos API — Administrative. 3 operations. Lead operation: Get Admin Branch Protection. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubAdministrative

What You Can Do

GET
Getadminbranchprotection — Get Admin Branch Protection
/v1/repos/{owner}/{repo}/branches/{branch}/protection/enforce-admins
POST
Setadminbranchprotection — Set Admin Branch Protection
/v1/repos/{owner}/{repo}/branches/{branch}/protection/enforce-admins
DELETE
Deleteadminbranchprotection — Delete Admin Branch Protection
/v1/repos/{owner}/{repo}/branches/{branch}/protection/enforce-admins

MCP Tools

get-admin-branch-protection

Get Admin Branch Protection

read-only idempotent
set-admin-branch-protection

Set Admin Branch Protection

delete-admin-branch-protection

Delete Admin Branch Protection

idempotent

Capability Spec

temp-administrative.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub Repos API — Administrative
  description: 'GitHub Repos API — Administrative. 3 operations. Lead operation: Get Admin Branch Protection. Self-contained
    Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Administrative
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: temp-administrative
    baseUri: ''
    description: GitHub Repos API — Administrative business capability. Self-contained, no shared references.
    resources:
    - name: repos-owner-repo-branches-branch-protection-enforce_admins
      path: /repos/{owner}/{repo}/branches/{branch}/protection/enforce_admins
      operations:
      - name: getadminbranchprotection
        method: GET
        description: Get Admin Branch Protection
        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: setadminbranchprotection
        method: POST
        description: Set Admin Branch Protection
        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: deleteadminbranchprotection
        method: DELETE
        description: Delete Admin Branch Protection
        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: temp-administrative-rest
    port: 8080
    description: REST adapter for GitHub Repos API — Administrative. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/repos/{owner}/{repo}/branches/{branch}/protection/enforce-admins
      name: repos-owner-repo-branches-branch-protection-enforce-admins
      description: REST surface for repos-owner-repo-branches-branch-protection-enforce_admins.
      operations:
      - method: GET
        name: getadminbranchprotection
        description: Get Admin Branch Protection
        call: temp-administrative.getadminbranchprotection
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: setadminbranchprotection
        description: Set Admin Branch Protection
        call: temp-administrative.setadminbranchprotection
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteadminbranchprotection
        description: Delete Admin Branch Protection
        call: temp-administrative.deleteadminbranchprotection
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: temp-administrative-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub Repos API — Administrative. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-admin-branch-protection
      description: Get Admin Branch Protection
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: temp-administrative.getadminbranchprotection
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: set-admin-branch-protection
      description: Set Admin Branch Protection
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: temp-administrative.setadminbranchprotection
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-admin-branch-protection
      description: Delete Admin Branch Protection
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: temp-administrative.deleteadminbranchprotection
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.