GitHub · Capability

github-repos-api — Deploy Keys

github-repos-api — Deploy Keys. 4 operations. Lead operation: GitHub List Deploy Keys. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubDeploy Keys

What You Can Do

GET
Listdeploykeys — GitHub List Deploy Keys
/v1/repos/{owner}/{repo}/keys
POST
Createdeploykey — GitHub Create Deploy Key
/v1/repos/{owner}/{repo}/keys
GET
Getdeploykey — GitHub Get Deploy Key
/v1/repos/{owner}/{repo}/keys/{key-id}
DELETE
Deletedeploykey — GitHub Delete Deploy Key
/v1/repos/{owner}/{repo}/keys/{key-id}

MCP Tools

github-list-deploy-keys

GitHub List Deploy Keys

read-only idempotent
github-create-deploy-key

GitHub Create Deploy Key

github-get-deploy-key

GitHub Get Deploy Key

read-only idempotent
github-delete-deploy-key

GitHub Delete Deploy Key

idempotent

Capability Spec

repos-deploy-keys.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: github-repos-api — Deploy Keys
  description: 'github-repos-api — Deploy Keys. 4 operations. Lead operation: GitHub List Deploy Keys. Self-contained Naftiko
    capability covering one Github business surface.'
  tags:
  - Github
  - Deploy Keys
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: repos-deploy-keys
    baseUri: http://localhost:8080/rest/github-repos-api/1.1.4
    description: github-repos-api — Deploy Keys business capability. Self-contained, no shared references.
    resources:
    - name: repos-owner-repo-keys
      path: /repos/{owner}/{repo}/keys
      operations:
      - name: listdeploykeys
        method: GET
        description: GitHub List Deploy Keys
        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: createdeploykey
        method: POST
        description: GitHub Create Deploy Key
        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: repos-owner-repo-keys-key_id
      path: /repos/{owner}/{repo}/keys/{key_id}
      operations:
      - name: getdeploykey
        method: GET
        description: GitHub Get Deploy Key
        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: deletedeploykey
        method: DELETE
        description: GitHub Delete Deploy Key
        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: repos-deploy-keys-rest
    port: 8080
    description: REST adapter for github-repos-api — Deploy Keys. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/repos/{owner}/{repo}/keys
      name: repos-owner-repo-keys
      description: REST surface for repos-owner-repo-keys.
      operations:
      - method: GET
        name: listdeploykeys
        description: GitHub List Deploy Keys
        call: repos-deploy-keys.listdeploykeys
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createdeploykey
        description: GitHub Create Deploy Key
        call: repos-deploy-keys.createdeploykey
        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/repos/{owner}/{repo}/keys/{key-id}
      name: repos-owner-repo-keys-key-id
      description: REST surface for repos-owner-repo-keys-key_id.
      operations:
      - method: GET
        name: getdeploykey
        description: GitHub Get Deploy Key
        call: repos-deploy-keys.getdeploykey
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletedeploykey
        description: GitHub Delete Deploy Key
        call: repos-deploy-keys.deletedeploykey
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: repos-deploy-keys-mcp
    port: 9090
    transport: http
    description: MCP adapter for github-repos-api — Deploy Keys. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: github-list-deploy-keys
      description: GitHub List Deploy Keys
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repos-deploy-keys.listdeploykeys
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-create-deploy-key
      description: GitHub Create Deploy Key
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: repos-deploy-keys.createdeploykey
      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-deploy-key
      description: GitHub Get Deploy Key
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repos-deploy-keys.getdeploykey
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-delete-deploy-key
      description: GitHub Delete Deploy Key
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: repos-deploy-keys.deletedeploykey
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.