GitHub · Capability

GitHub User API — Remove

GitHub User API — Remove. 2 operations. Lead operation: GitHub Remove User Access Restrictions. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubRemove

What You Can Do

DELETE
Removeuseraccessrestrictions — GitHub Remove User Access Restrictions
/v1/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users
DELETE
Removerepositoryfromanappinstallation — GitHub Remove Repository from an App Installation
/v1/user/installations/{installation-id}/repositories/{repository-id}

MCP Tools

github-remove-user-access-restrictions

GitHub Remove User Access Restrictions

idempotent
github-remove-repository-app-installation

GitHub Remove Repository from an App Installation

idempotent

Capability Spec

users-remove.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub User API — Remove
  description: 'GitHub User API — Remove. 2 operations. Lead operation: GitHub Remove User Access Restrictions. Self-contained
    Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Remove
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: users-remove
    baseUri: ''
    description: GitHub User API — Remove business capability. Self-contained, no shared references.
    resources:
    - name: repos-owner-repo-branches-branch-protection-restrictions-users
      path: /repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users
      operations:
      - name: removeuseraccessrestrictions
        method: DELETE
        description: GitHub Remove User Access Restrictions
        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: false
    - name: user-installations-installation_id-repositories-repository_id
      path: /user/installations/{installation_id}/repositories/{repository_id}
      operations:
      - name: removerepositoryfromanappinstallation
        method: DELETE
        description: GitHub Remove Repository from an App Installation
        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: users-remove-rest
    port: 8080
    description: REST adapter for GitHub User API — Remove. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/repos/{owner}/{repo}/branches/{branch}/protection/restrictions/users
      name: repos-owner-repo-branches-branch-protection-restrictions-users
      description: REST surface for repos-owner-repo-branches-branch-protection-restrictions-users.
      operations:
      - method: DELETE
        name: removeuseraccessrestrictions
        description: GitHub Remove User Access Restrictions
        call: users-remove.removeuseraccessrestrictions
        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/user/installations/{installation-id}/repositories/{repository-id}
      name: user-installations-installation-id-repositories-repository-id
      description: REST surface for user-installations-installation_id-repositories-repository_id.
      operations:
      - method: DELETE
        name: removerepositoryfromanappinstallation
        description: GitHub Remove Repository from an App Installation
        call: users-remove.removerepositoryfromanappinstallation
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: users-remove-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub User API — Remove. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: github-remove-user-access-restrictions
      description: GitHub Remove User Access Restrictions
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: users-remove.removeuseraccessrestrictions
      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-remove-repository-app-installation
      description: GitHub Remove Repository from an App Installation
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: users-remove.removerepositoryfromanappinstallation
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.