GitHub · Capability

GitHub User API — Tokens

GitHub User API — Tokens. 4 operations. Lead operation: GitHub Create an Impersonation Oauth Token. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubTokens

What You Can Do

POST
Createanimpersonationoauthtoken — GitHub Create an Impersonation Oauth Token
/v1/admin/users/{username}/authorizations
DELETE
Deleteanimpersonationoauthtoken — GitHub Delete an Impersonation Oauth Token
/v1/admin/users/{username}/authorizations
GET
Listappinstallationsaccessibletotheuseraccesstoken — GitHub List App Installations Accessible to the User Access Token
/v1/user/installations
GET
Listrepositoriesaccessibletotheuseraccesstoken — GitHub List Repositories Accessible to the User Access Token
/v1/user/installations/{installation-id}/repositories

MCP Tools

github-create-impersonation-oauth-token

GitHub Create an Impersonation Oauth Token

github-delete-impersonation-oauth-token

GitHub Delete an Impersonation Oauth Token

idempotent
github-list-app-installations-accessible

GitHub List App Installations Accessible to the User Access Token

read-only idempotent
github-list-repositories-accessible-user

GitHub List Repositories Accessible to the User Access Token

read-only idempotent

Capability Spec

users-tokens.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub User API — Tokens
  description: 'GitHub User API — Tokens. 4 operations. Lead operation: GitHub Create an Impersonation Oauth Token. Self-contained
    Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Tokens
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: users-tokens
    baseUri: ''
    description: GitHub User API — Tokens business capability. Self-contained, no shared references.
    resources:
    - name: admin-users-username-authorizations
      path: /admin/users/{username}/authorizations
      operations:
      - name: createanimpersonationoauthtoken
        method: POST
        description: GitHub Create an Impersonation Oauth Token
        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: deleteanimpersonationoauthtoken
        method: DELETE
        description: GitHub Delete an Impersonation Oauth Token
        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: user-installations
      path: /user/installations
      operations:
      - name: listappinstallationsaccessibletotheuseraccesstoken
        method: GET
        description: GitHub List App Installations Accessible to the User Access Token
        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: user-installations-installation_id-repositories
      path: /user/installations/{installation_id}/repositories
      operations:
      - name: listrepositoriesaccessibletotheuseraccesstoken
        method: GET
        description: GitHub List Repositories Accessible to the User Access Token
        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-tokens-rest
    port: 8080
    description: REST adapter for GitHub User API — Tokens. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/admin/users/{username}/authorizations
      name: admin-users-username-authorizations
      description: REST surface for admin-users-username-authorizations.
      operations:
      - method: POST
        name: createanimpersonationoauthtoken
        description: GitHub Create an Impersonation Oauth Token
        call: users-tokens.createanimpersonationoauthtoken
        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: deleteanimpersonationoauthtoken
        description: GitHub Delete an Impersonation Oauth Token
        call: users-tokens.deleteanimpersonationoauthtoken
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/user/installations
      name: user-installations
      description: REST surface for user-installations.
      operations:
      - method: GET
        name: listappinstallationsaccessibletotheuseraccesstoken
        description: GitHub List App Installations Accessible to the User Access Token
        call: users-tokens.listappinstallationsaccessibletotheuseraccesstoken
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/user/installations/{installation-id}/repositories
      name: user-installations-installation-id-repositories
      description: REST surface for user-installations-installation_id-repositories.
      operations:
      - method: GET
        name: listrepositoriesaccessibletotheuseraccesstoken
        description: GitHub List Repositories Accessible to the User Access Token
        call: users-tokens.listrepositoriesaccessibletotheuseraccesstoken
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: users-tokens-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub User API — Tokens. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: github-create-impersonation-oauth-token
      description: GitHub Create an Impersonation Oauth Token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: users-tokens.createanimpersonationoauthtoken
      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-impersonation-oauth-token
      description: GitHub Delete an Impersonation Oauth Token
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: users-tokens.deleteanimpersonationoauthtoken
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-list-app-installations-accessible
      description: GitHub List App Installations Accessible to the User Access Token
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users-tokens.listappinstallationsaccessibletotheuseraccesstoken
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-list-repositories-accessible-user
      description: GitHub List Repositories Accessible to the User Access Token
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users-tokens.listrepositoriesaccessibletotheuseraccesstoken
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.