GitHub · Capability

github-repos-api — Lists

github-repos-api — Lists. 3 operations. Lead operation: GitHub List Code Scanning Alerts for Repository. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubLists

What You Can Do

GET
Listcodescanningalertsforrepository — GitHub List Code Scanning Alerts for Repository
/v1/repos/{owner}/{repo}/code-scanning/alerts
GET
Listinstancesofcodescanningalert — GitHub List Instances of Code Scanning Alert
/v1/repos/{owner}/{repo}/code-scanning/alerts/{alert-number}/instances
GET
Listcodescanninganalysesforrepository — GitHub List Code Scanning Analyses for Repository
/v1/repos/{owner}/{repo}/code-scanning/analyses

MCP Tools

github-list-code-scanning-alerts

GitHub List Code Scanning Alerts for Repository

read-only idempotent
github-list-instances-code-scanning

GitHub List Instances of Code Scanning Alert

read-only idempotent
github-list-code-scanning-analyses

GitHub List Code Scanning Analyses for Repository

read-only idempotent

Capability Spec

repo-code-scanning-lists.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: github-repos-api — Lists
  description: 'github-repos-api — Lists. 3 operations. Lead operation: GitHub List Code Scanning Alerts for Repository. Self-contained
    Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Lists
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: repo-code-scanning-lists
    baseUri: ''
    description: github-repos-api — Lists business capability. Self-contained, no shared references.
    resources:
    - name: repos-owner-repo-code-scanning-alerts
      path: /repos/{owner}/{repo}/code-scanning/alerts
      operations:
      - name: listcodescanningalertsforrepository
        method: GET
        description: GitHub List Code Scanning Alerts for Repository
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sort
          in: query
          type: string
          description: The property by which to sort the results.
        - name: state
          in: query
          type: string
          description: If specified, only code scanning alerts with this state will be returned.
        - name: severity
          in: query
          type: string
          description: If specified, only code scanning alerts with this severity will be returned.
        - name: Authorization
          in: header
          type: string
        - name: X-GitHub-Api-Version
          in: header
          type: string
        - name: Accept
          in: header
          type: string
    - name: repos-owner-repo-code-scanning-alerts-alert_number-instances
      path: /repos/{owner}/{repo}/code-scanning/alerts/{alert_number}/instances
      operations:
      - name: listinstancesofcodescanningalert
        method: GET
        description: GitHub List Instances of Code Scanning Alert
        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: repos-owner-repo-code-scanning-analyses
      path: /repos/{owner}/{repo}/code-scanning/analyses
      operations:
      - name: listcodescanninganalysesforrepository
        method: GET
        description: GitHub List Code Scanning Analyses for Repository
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: ref
          in: query
          type: string
          description: 'The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either
            as `refs/heads/<branch name>` or simply `<branch name>`. To '
        - name: sarif_id
          in: query
          type: string
          description: Filter analyses belonging to the same SARIF upload.
        - name: sort
          in: query
          type: string
          description: The property by which to sort the results.
        - 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: repo-code-scanning-lists-rest
    port: 8080
    description: REST adapter for github-repos-api — Lists. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/repos/{owner}/{repo}/code-scanning/alerts
      name: repos-owner-repo-code-scanning-alerts
      description: REST surface for repos-owner-repo-code-scanning-alerts.
      operations:
      - method: GET
        name: listcodescanningalertsforrepository
        description: GitHub List Code Scanning Alerts for Repository
        call: repo-code-scanning-lists.listcodescanningalertsforrepository
        with:
          sort: rest.sort
          state: rest.state
          severity: rest.severity
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/repos/{owner}/{repo}/code-scanning/alerts/{alert-number}/instances
      name: repos-owner-repo-code-scanning-alerts-alert-number-instances
      description: REST surface for repos-owner-repo-code-scanning-alerts-alert_number-instances.
      operations:
      - method: GET
        name: listinstancesofcodescanningalert
        description: GitHub List Instances of Code Scanning Alert
        call: repo-code-scanning-lists.listinstancesofcodescanningalert
        with:
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/repos/{owner}/{repo}/code-scanning/analyses
      name: repos-owner-repo-code-scanning-analyses
      description: REST surface for repos-owner-repo-code-scanning-analyses.
      operations:
      - method: GET
        name: listcodescanninganalysesforrepository
        description: GitHub List Code Scanning Analyses for Repository
        call: repo-code-scanning-lists.listcodescanninganalysesforrepository
        with:
          ref: rest.ref
          sarif_id: rest.sarif_id
          sort: rest.sort
          Authorization: rest.Authorization
          X-GitHub-Api-Version: rest.X-GitHub-Api-Version
          Accept: rest.Accept
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: repo-code-scanning-lists-mcp
    port: 9090
    transport: http
    description: MCP adapter for github-repos-api — Lists. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: github-list-code-scanning-alerts
      description: GitHub List Code Scanning Alerts for Repository
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repo-code-scanning-lists.listcodescanningalertsforrepository
      with:
        sort: tools.sort
        state: tools.state
        severity: tools.severity
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-list-instances-code-scanning
      description: GitHub List Instances of Code Scanning Alert
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repo-code-scanning-lists.listinstancesofcodescanningalert
      with:
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.
    - name: github-list-code-scanning-analyses
      description: GitHub List Code Scanning Analyses for Repository
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: repo-code-scanning-lists.listcodescanninganalysesforrepository
      with:
        ref: tools.ref
        sarif_id: tools.sarif_id
        sort: tools.sort
        Authorization: tools.Authorization
        X-GitHub-Api-Version: tools.X-GitHub-Api-Version
        Accept: tools.Accept
      outputParameters:
      - type: object
        mapping: $.