GitHub · Capability

GitHub Teams API — Restrictions

GitHub Teams API — Restrictions. 3 operations. Lead operation: GitHub Add Team Access Restrictions. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubRestrictions

What You Can Do

POST
Addteamaccessrestrictions — GitHub Add Team Access Restrictions
/v1/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams
PUT
Setteamaccessrestrictions — GitHub Set Team Access Restrictions
/v1/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams
DELETE
Removeteamaccessrestrictions — GitHub Remove Team Access Restrictions
/v1/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams

MCP Tools

github-add-team-access-restrictions

GitHub Add Team Access Restrictions

github-set-team-access-restrictions

GitHub Set Team Access Restrictions

idempotent
github-remove-team-access-restrictions

GitHub Remove Team Access Restrictions

idempotent

Capability Spec

teams-restrictions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub Teams API — Restrictions
  description: 'GitHub Teams API — Restrictions. 3 operations. Lead operation: GitHub Add Team Access Restrictions. Self-contained
    Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Restrictions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: teams-restrictions
    baseUri: ''
    description: GitHub Teams API — Restrictions business capability. Self-contained, no shared references.
    resources:
    - name: repos-owner-repo-branches-branch-protection-restrictions-teams
      path: /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams
      operations:
      - name: addteamaccessrestrictions
        method: POST
        description: GitHub Add Team Access Restrictions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: setteamaccessrestrictions
        method: PUT
        description: GitHub Set Team Access Restrictions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: removeteamaccessrestrictions
        method: DELETE
        description: GitHub Remove Team Access Restrictions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: bearer
      token: '{{env.GITHUB_API_KEY}}'
  exposes:
  - type: rest
    namespace: teams-restrictions-rest
    port: 8080
    description: REST adapter for GitHub Teams API — Restrictions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/teams
      name: repos-owner-repo-branches-branch-protection-restrictions-teams
      description: REST surface for repos-owner-repo-branches-branch-protection-restrictions-teams.
      operations:
      - method: POST
        name: addteamaccessrestrictions
        description: GitHub Add Team Access Restrictions
        call: teams-restrictions.addteamaccessrestrictions
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: setteamaccessrestrictions
        description: GitHub Set Team Access Restrictions
        call: teams-restrictions.setteamaccessrestrictions
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: removeteamaccessrestrictions
        description: GitHub Remove Team Access Restrictions
        call: teams-restrictions.removeteamaccessrestrictions
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: teams-restrictions-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub Teams API — Restrictions. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: github-add-team-access-restrictions
      description: GitHub Add Team Access Restrictions
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: teams-restrictions.addteamaccessrestrictions
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-set-team-access-restrictions
      description: GitHub Set Team Access Restrictions
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: teams-restrictions.setteamaccessrestrictions
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-remove-team-access-restrictions
      description: GitHub Remove Team Access Restrictions
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: teams-restrictions.removeteamaccessrestrictions
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.