MCP360 Mcp360 API

The mcp360 API from MCP360 — 2 operation(s) for mcp360.

OpenAPI Specification

mcp360-mcp360-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Universal MCP Gateway REST Mcp360 API
  version: 1.0.0
  description: Universal gateway to all MCPs - integrate once, access everything
servers:
- url: https://connect.mcp360.ai
  description: MCP360 API Server
security:
- bearerAuth: []
- apiKey: []
tags:
- name: mcp360
paths:
  /api/v1/mcp360/search:
    post:
      summary: Execute search
      operationId: mcp360_search
      tags:
      - mcp360
      parameters:
      - name: validateOutput
        in: query
        schema:
          type: boolean
        description: Validate output against schema
      - name: strictValidation
        in: query
        schema:
          type: boolean
        description: Fail on validation errors
      - name: includeMetadata
        in: query
        schema:
          type: boolean
        description: Include execution metadata
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/mcp360_search_input'
      responses:
        '200':
          description: Successful execution
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                  metadata:
                    type: object
                    properties:
                      service:
                        type: string
                      tool:
                        type: string
                      executionTime:
                        type: string
                      creditsUsed:
                        type: number
                      timestamp:
                        type: string
                        format: date-time
                required:
                - success
                - data
        '400':
          description: Bad request or validation error
        '401':
          description: Unauthorized
        '403':
          description: Forbidden (premium access required)
        '404':
          description: Service or tool not found
        '429':
          description: Rate limit exceeded
        '500':
          description: Internal server error
  /api/v1/mcp360/execute:
    post:
      summary: Execute execute
      operationId: mcp360_execute
      tags:
      - mcp360
      parameters:
      - name: validateOutput
        in: query
        schema:
          type: boolean
        description: Validate output against schema
      - name: strictValidation
        in: query
        schema:
          type: boolean
        description: Fail on validation errors
      - name: includeMetadata
        in: query
        schema:
          type: boolean
        description: Include execution metadata
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/mcp360_execute_input'
      responses:
        '200':
          description: Successful execution
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                  metadata:
                    type: object
                    properties:
                      service:
                        type: string
                      tool:
                        type: string
                      executionTime:
                        type: string
                      creditsUsed:
                        type: number
                      timestamp:
                        type: string
                        format: date-time
                required:
                - success
                - data
        '400':
          description: Bad request or validation error
        '401':
          description: Unauthorized
        '403':
          description: Forbidden (premium access required)
        '404':
          description: Service or tool not found
        '429':
          description: Rate limit exceeded
        '500':
          description: Internal server error
components:
  schemas:
    mcp360_search_input:
      type: object
      properties:
        query:
          type: string
          minLength: 1
          maxLength: 200
          description: The query to search the tools by name or keywords
        limit:
          type: integer
          minimum: 1
          maximum: 100
          description: The limit of results to return
      additionalProperties: false
    mcp360_execute_input:
      type: object
      properties:
        service:
          type: string
          minLength: 1
          maxLength: 100
        tool:
          type: string
          minLength: 1
          maxLength: 100
        parameters:
          anyOf:
          - type: object
            additionalProperties: {}
          - type: string
      required:
      - service
      - tool
      - parameters
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key