Tradeshift MCP HTTP Bridge & Management API

The MCP HTTP Bridge & Management API from Tradeshift — 1 operation(s) for mcp http bridge & management.

Documentation

Specifications

Schemas & Data

Other Resources

OpenAPI Specification

tradeshift-mcp-http-bridge-management-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: MCP HTTP Bridge & Management API
  version: 0.1.0
tags:
- name: MCP HTTP Bridge & Management
paths:
  /{full_path}:
    get:
      summary: Serve Spa
      operationId: serve_spa__full_path__get
      parameters:
      - name: full_path
        in: path
        required: true
        schema:
          type: string
          title: Full Path
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - MCP HTTP Bridge & Management
components:
  schemas:
    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:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key