> ## Documentation Index
> Fetch the complete documentation index at: https://www.klavis.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Prepare sandbox infrastructure for high demand

> Scale up sandbox capacity for the specified benchmark in anticipation of heavy usage. The capacity boost is temporary and reverts automatically after approximately 1 hour. Can be called multiple times for different benchmarks; each benchmark's capacity is managed independently.



## OpenAPI

````yaml post /sandbox/prepare
openapi: 3.1.0
info:
  title: Klavis AI (https://www.klavis.ai)
  description: Klavis AI - Open Source MCP Integrations for AI Applications
  version: 0.1.0
servers:
  - url: https://api.klavis.ai
    description: US Production server
  - url: https://api.eu.klavis.ai
    description: EU Production server
security: []
paths:
  /sandbox/prepare:
    post:
      tags:
        - sandbox
      summary: Prepare sandbox infrastructure for high demand
      description: >-
        Scale up sandbox capacity for the specified benchmark in anticipation of
        heavy usage. The capacity boost is temporary and reverts automatically
        after approximately 1 hour. Can be called multiple times for different
        benchmarks; each benchmark's capacity is managed independently.
      operationId: prepare_sandbox_capacity_sandbox_prepare_post
      parameters:
        - name: benchmark
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/BenchmarkEnum'
              - type: 'null'
            description: >-
              The benchmark to prepare capacity for. Defaults to general
              capacity if not specified.
            title: Benchmark
          description: >-
            The benchmark to prepare capacity for. Defaults to general capacity
            if not specified.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    BenchmarkEnum:
      type: string
      enum:
        - MCP_Atlas
        - Toolathlon
        - MCP_Mark
      title: BenchmarkEnum
      description: Supported benchmarks for sandbox initial environment
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      description: Your Klavis AI API key.
      scheme: bearer
      x-fern-bearer:
        name: api_key

````