GitHub · Capability

GitHub User API — Email

GitHub User API — Email. 4 operations. Lead operation: GitHub List Email Addresses for the Authenticated User. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubEmail

What You Can Do

GET
Listemailaddressesfortheauthenticateduser — GitHub List Email Addresses for the Authenticated User
/v1/user/emails
POST
Addanemailaddressfortheauthenticateduser — GitHub Add an Email Address for the Authenticated User
/v1/user/emails
DELETE
Deleteanemailaddressfortheauthenticateduser — GitHub Delete an Email Address for the Authenticated User
/v1/user/emails
GET
Listpublicemailaddressesfortheauthenticateduser — GitHub List Public Email Addresses for the Authenticated User
/v1/user/public-emails

MCP Tools

github-list-email-addresses-authenticated

GitHub List Email Addresses for the Authenticated User

read-only idempotent
github-add-email-address-authenticated

GitHub Add an Email Address for the Authenticated User

github-delete-email-address-authenticated

GitHub Delete an Email Address for the Authenticated User

idempotent
github-list-public-email-addresses

GitHub List Public Email Addresses for the Authenticated User

read-only idempotent

Capability Spec

users-email.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub User API — Email
  description: 'GitHub User API — Email. 4 operations. Lead operation: GitHub List Email Addresses for the Authenticated User.
    Self-contained Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Email
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: users-email
    baseUri: ''
    description: GitHub User API — Email business capability. Self-contained, no shared references.
    resources:
    - name: user-emails
      path: /user/emails
      operations:
      - name: listemailaddressesfortheauthenticateduser
        method: GET
        description: GitHub List Email Addresses 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: addanemailaddressfortheauthenticateduser
        method: POST
        description: GitHub Add an Email Address 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: false
      - name: deleteanemailaddressfortheauthenticateduser
        method: DELETE
        description: GitHub Delete an Email Address 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: false
    - name: user-public_emails
      path: /user/public_emails
      operations:
      - name: listpublicemailaddressesfortheauthenticateduser
        method: GET
        description: GitHub List Public Email Addresses 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
    authentication:
      type: bearer
      token: '{{env.GITHUB_API_KEY}}'
  exposes:
  - type: rest
    namespace: users-email-rest
    port: 8080
    description: REST adapter for GitHub User API — Email. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/user/emails
      name: user-emails
      description: REST surface for user-emails.
      operations:
      - method: GET
        name: listemailaddressesfortheauthenticateduser
        description: GitHub List Email Addresses for the Authenticated User
        call: users-email.listemailaddressesfortheauthenticateduser
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: addanemailaddressfortheauthenticateduser
        description: GitHub Add an Email Address for the Authenticated User
        call: users-email.addanemailaddressfortheauthenticateduser
        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: deleteanemailaddressfortheauthenticateduser
        description: GitHub Delete an Email Address for the Authenticated User
        call: users-email.deleteanemailaddressfortheauthenticateduser
        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/public-emails
      name: user-public-emails
      description: REST surface for user-public_emails.
      operations:
      - method: GET
        name: listpublicemailaddressesfortheauthenticateduser
        description: GitHub List Public Email Addresses for the Authenticated User
        call: users-email.listpublicemailaddressesfortheauthenticateduser
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: users-email-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub User API — Email. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: github-list-email-addresses-authenticated
      description: GitHub List Email Addresses for the Authenticated User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users-email.listemailaddressesfortheauthenticateduser
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-add-email-address-authenticated
      description: GitHub Add an Email Address for the Authenticated User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: users-email.addanemailaddressfortheauthenticateduser
      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-email-address-authenticated
      description: GitHub Delete an Email Address for the Authenticated User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: users-email.deleteanemailaddressfortheauthenticateduser
      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-list-public-email-addresses
      description: GitHub List Public Email Addresses for the Authenticated User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: users-email.listpublicemailaddressesfortheauthenticateduser
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.