GitHub · Capability

github-repos-api — Environments

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

Run with Naftiko GithubEnvironments

What You Can Do

GET
Listenvironments — GitHub List Environments
/v1/repos/{owner}/{repo}/environments
GET
Getanenvironment — GitHub Get an Environment
/v1/repos/{owner}/{repo}/environments/{environment-name}
PUT
Createorupdateanenvironment — GitHub Create or Update an Environment
/v1/repos/{owner}/{repo}/environments/{environment-name}
DELETE
Deleteanenvironment — GitHub Delete an Environment
/v1/repos/{owner}/{repo}/environments/{environment-name}

MCP Tools

github-list-environments

GitHub List Environments

read-only idempotent
github-get-environment

GitHub Get an Environment

read-only idempotent
github-create-update-environment

GitHub Create or Update an Environment

idempotent
github-delete-environment

GitHub Delete an Environment

idempotent

Capability Spec

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