GitHub · Capability

GitHub User API — Gpg

GitHub User API — Gpg. 5 operations. Lead operation: GitHub List Gpg Keys for the Authenticated User. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubGpg

What You Can Do

GET
Listgpgkeysfortheauthenticateduser — GitHub List Gpg Keys for the Authenticated User
/v1/user/gpg-keys
POST
Creategpgkeyfortheauthenticateduser — GitHub Create Gpg Key for the Authenticated User
/v1/user/gpg-keys
GET
Getgpgkeyfortheauthenticateduser — GitHub Get Gpg Key for the Authenticated User
/v1/user/gpg-keys/{gpg-key-id}
DELETE
Deletegpgkeyfortheauthenticateduser — GitHub Delete Gpg Key for the Authenticated User
/v1/user/gpg-keys/{gpg-key-id}
GET
Listgpgkeysforuser — GitHub List Gpg Keys for User
/v1/users/{username}/gpg-keys

MCP Tools

github-list-gpg-keys-authenticated

GitHub List Gpg Keys for the Authenticated User

read-only idempotent
github-create-gpg-key-authenticated

GitHub Create Gpg Key for the Authenticated User

github-get-gpg-key-authenticated

GitHub Get Gpg Key for the Authenticated User

read-only idempotent
github-delete-gpg-key-authenticated

GitHub Delete Gpg Key for the Authenticated User

idempotent
github-list-gpg-keys-user

GitHub List Gpg Keys for User

read-only idempotent

Capability Spec

users-gpg.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub User API — Gpg
  description: 'GitHub User API — Gpg. 5 operations. Lead operation: GitHub List Gpg Keys for the Authenticated User. Self-contained
    Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Gpg
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: users-gpg
    baseUri: ''
    description: GitHub User API — Gpg business capability. Self-contained, no shared references.
    resources:
    - name: user-gpg_keys
      path: /user/gpg_keys
      operations:
      - name: listgpgkeysfortheauthenticateduser
        method: GET
        description: GitHub List Gpg Keys for the Authenticated User
        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: creategpgkeyfortheauthenticateduser
        method: POST
        description: GitHub Create Gpg Key for the Authenticated User
        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: user-gpg_keys-gpg_key_id
      path: /user/gpg_keys/{gpg_key_id}
      operations:
      - name: getgpgkeyfortheauthenticateduser
        method: GET
        description: GitHub Get Gpg Key for the Authenticated User
        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: deletegpgkeyfortheauthenticateduser
        method: DELETE
        description: GitHub Delete Gpg Key for the Authenticated User
        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: users-username-gpg_keys
      path: /users/{username}/gpg_keys
      operations:
      - name: listgpgkeysforuser
        method: GET
        description: GitHub List Gpg Keys for User
        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-gpg-rest
    port: 8080
    description: REST adapter for GitHub User API — Gpg. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/user/gpg-keys
      name: user-gpg-keys
      description: REST surface for user-gpg_keys.
      operations:
      - method: GET
        name: listgpgkeysfortheauthenticateduser
        description: GitHub List Gpg Keys for the Authenticated User
        call: users-gpg.listgpgkeysfortheauthenticateduser
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: creategpgkeyfortheauthenticateduser
        description: GitHub Create Gpg Key for the Authenticated User
        call: users-gpg.creategpgkeyfortheauthenticateduser
        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/gpg-keys/{gpg-key-id}
      name: user-gpg-keys-gpg-key-id
      description: REST surface for user-gpg_keys-gpg_key_id.
      operations:
      - method: GET
        name: getgpgkeyfortheauthenticateduser
        description: GitHub Get Gpg Key for the Authenticated User
        call: users-gpg.getgpgkeyfortheauthenticateduser
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletegpgkeyfortheauthenticateduser
        description: GitHub Delete Gpg Key for the Authenticated User
        call: users-gpg.deletegpgkeyfortheauthenticateduser
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/users/{username}/gpg-keys
      name: users-username-gpg-keys
      description: REST surface for users-username-gpg_keys.
      operations:
      - method: GET
        name: listgpgkeysforuser
        description: GitHub List Gpg Keys for User
        call: users-gpg.listgpgkeysforuser
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: users-gpg-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub User API — Gpg. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: github-list-gpg-keys-authenticated
      description: GitHub List Gpg Keys for the Authenticated User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users-gpg.listgpgkeysfortheauthenticateduser
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-create-gpg-key-authenticated
      description: GitHub Create Gpg Key for the Authenticated User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: users-gpg.creategpgkeyfortheauthenticateduser
      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-gpg-key-authenticated
      description: GitHub Get Gpg Key for the Authenticated User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users-gpg.getgpgkeyfortheauthenticateduser
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-delete-gpg-key-authenticated
      description: GitHub Delete Gpg Key for the Authenticated User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: users-gpg.deletegpgkeyfortheauthenticateduser
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-list-gpg-keys-user
      description: GitHub List Gpg Keys for User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users-gpg.listgpgkeysforuser
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.