MCP360 Google Jobs API

The google-jobs API from MCP360 — 1 operation(s) for google-jobs.

OpenAPI Specification

mcp360-google-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tools REST Google Jobs API
  version: 1.0.0
  description: Google Jobs search, salary data, and employment opportunities
servers:
- url: https://connect.mcp360.ai
  description: MCP360 API Server
security:
- bearerAuth: []
- apiKey: []
tags:
- name: google-jobs
paths:
  /api/v1/google-jobs/search_jobs:
    post:
      summary: Execute search_jobs
      operationId: google-jobs_search_jobs
      tags:
      - google-jobs
      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/google-jobs_search_jobs_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
    get:
      summary: Execute search_jobs
      operationId: google-jobs_search_jobs_get
      tags:
      - google-jobs
      parameters:
      - name: query
        in: query
        required: true
        schema:
          type: string
        description: Job search query - can include title, company, 'remote', 'part-time', etc.
      - name: location
        in: query
        required: false
        schema:
          type: string
        description: Location (e.g., 'San Francisco, CA', 'New York, NY')
      - name: country
        in: query
        required: false
        schema:
          type: string
        description: Country code (e.g., 'us', 'uk', 'ca')
      - name: language
        in: query
        required: false
        schema:
          type: string
        description: Language code (e.g., 'en', 'es', 'fr')
      - name: validateOutput
        in: query
        schema:
          type: boolean
        description: Validate output against schema
      - name: includeMetadata
        in: query
        schema:
          type: boolean
        description: Include execution metadata
      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:
    google-jobs_search_jobs_input:
      type: object
      properties:
        query:
          type: string
          minLength: 1
          maxLength: 500
          description: Job search query - can include title, company, 'remote', 'part-time', etc.
        location:
          type: string
          minLength: 1
          maxLength: 200
          description: Location (e.g., 'San Francisco, CA', 'New York, NY')
        country:
          type: string
          minLength: 2
          maxLength: 2
          pattern: ^[a-z]{2}$
          description: Country code (e.g., 'us', 'uk', 'ca')
        language:
          type: string
          pattern: ^[a-z]{2}(-[a-z]{2})?$
          description: Language code (e.g., 'en', 'es', 'fr')
      required:
      - query
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    apiKey:
      type: apiKey
      in: header
      name: X-API-Key