Inngest · Capability

Inngest REST API — Environments

Inngest Environments. List, create, and update branch and custom environments used to isolate Inngest traffic across development, staging, branch, and production.

Inngest REST API — Environments is a Naftiko capability published by Inngest, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET, POST, and PATCH methods rooted at /v1/environments.

The capability includes 1 read-only operation and 2 state-changing operations. Lead operation: List Inngest environments. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Inngest, Environments, Branches, and Platform.

Run with Naftiko InngestEnvironmentsBranchesPlatform

What You Can Do

GET
V2fetchaccountenvs — List environments.
/v1/environments
POST
V2createenv — Create an environment.
/v1/environments
PATCH
V2patchenv — Update an environment.
/v1/environments/{id}

MCP Tools

list-environments

List Inngest environments.

read-only idempotent
create-environment

Create an Inngest environment.

update-environment

Update an Inngest environment.

idempotent

Capability Spec

inngest-environments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Inngest REST API — Environments
  description: 'Inngest Environments. List, create, and update branch and custom environments used to isolate Inngest traffic across development, staging, branch, and production.'
  tags:
  - Inngest
  - Environments
  - Branches
  - Platform
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    INNGEST_SIGNING_KEY: INNGEST_SIGNING_KEY
capability:
  consumes:
  - type: http
    namespace: inngest-environments
    baseUri: https://api.inngest.com/v2
    description: Inngest Environments management surface (v2).
    resources:
    - name: envs
      path: /envs
      operations:
      - name: v2FetchAccountEnvs
        method: GET
        description: List custom and branch environments for the account.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: v2CreateEnv
        method: POST
        description: Create a custom or branch environment.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    - name: envs-id
      path: /envs/{id}
      operations:
      - name: v2PatchEnv
        method: PATCH
        description: Partially update an environment.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          required: true
    authentication:
      type: bearer
      token: '{{env.INNGEST_SIGNING_KEY}}'
  exposes:
  - type: rest
    namespace: inngest-environments-rest
    port: 8080
    description: REST adapter for Inngest Environments.
    resources:
    - path: /v1/environments
      name: environments
      description: List and create Inngest environments.
      operations:
      - method: GET
        name: v2FetchAccountEnvs
        description: List environments.
        call: inngest-environments.v2FetchAccountEnvs
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: v2CreateEnv
        description: Create an environment.
        call: inngest-environments.v2CreateEnv
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/environments/{id}
      name: environment
      description: Update a single environment.
      operations:
      - method: PATCH
        name: v2PatchEnv
        description: Update an environment.
        call: inngest-environments.v2PatchEnv
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: inngest-environments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Inngest Environments.
    tools:
    - name: list-environments
      description: List Inngest environments.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: inngest-environments.v2FetchAccountEnvs
      outputParameters:
      - type: object
        mapping: $.
    - name: create-environment
      description: Create an Inngest environment.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: inngest-environments.v2CreateEnv
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: update-environment
      description: Update an Inngest environment.
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: inngest-environments.v2PatchEnv
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.