{
  "info": {
    "name": "Zenserp — mcp.ai",
    "description": "REST API for the Zenserp MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/zenserp",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "zenserp_bing_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/bing/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "bing",
            "search"
          ]
        },
        "description": "Tool to obtain Bing search results. Use when you need real-time scraping of Bing SERPs from bing.com.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"cc\": \"\",\n  \"lat\": \"\",\n  \"lon\": \"\",\n  \"mkt\": \"\",\n  \"count\": 0,\n  \"first\": 0,\n  \"location\": \"\",\n  \"search_engine\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_get_shopping_product",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/shopping/product",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "shopping",
            "product"
          ]
        },
        "description": "Tool to retrieve detailed Google Shopping product page information by product_id. Use when you need comprehensive product details including pricing, reviews, specifications, and seller information for",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gl\": \"\",\n  \"hl\": \"\",\n  \"location\": \"\",\n  \"product_id\": \"\",\n  \"search_engine\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_get_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "status"
          ]
        },
        "description": "Tool to check the remaining API requests for your API key. Use when you need to verify your Zenserp API quota.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_google_reverse_image_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/google/reverse/image/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "google",
            "reverse",
            "image",
            "search"
          ]
        },
        "description": "Tool to perform a reverse image search on Google. Use after obtaining a public image URL to find where the image appears online.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"num\": 0,\n  \"start\": 0,\n  \"image_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_google_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/google/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "google",
            "search"
          ]
        },
        "description": "Tool to perform a standard Google search via Zenserp. Use when you need structured SERP data for a given query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"gl\": \"\",\n  \"hl\": \"\",\n  \"lr\": \"\",\n  \"lat\": 0,\n  \"lng\": 0,\n  \"num\": 0,\n  \"tbm\": \"\",\n  \"start\": 0,\n  \"device\": \"\",\n  \"output\": \"\",\n  \"location\": \"\",\n  \"timeframe\": \"\",\n  \"search_engine\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_google_trends",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/google/trends",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "google",
            "trends"
          ]
        },
        "description": "Tool to retrieve Google Trends data. Use when comparing keyword popularity over time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hl\": \"\",\n  \"cat\": \"\",\n  \"geo\": \"\",\n  \"type\": \"\",\n  \"keywords\": \"\",\n  \"timeframe\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_list_batches",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/batches",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "batches"
          ]
        },
        "description": "Tool to list all submitted batches for your Zenserp API key. Use when you need to retrieve batch processing status or history.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_list_countries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/countries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "countries"
          ]
        },
        "description": "Tool to get the list of supported Google country (gl) parameters. Use when you need to know valid country codes for geolocation.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_list_languages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/languages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "languages"
          ]
        },
        "description": "Tool to get a list of supported Google interface language (hl) parameters. Use when you need to find valid language codes for Google search queries.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_list_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "locations"
          ]
        },
        "description": "Tool to get a list of supported geo locations for search targeting. Use when you need to know which location parameters are available for geolocation queries.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_list_search_engines",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/search/engines",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "search",
            "engines"
          ]
        },
        "description": "Tool to get the list of supported search engines that can be queried via Zenserp. Use when you need to determine which search engine domains are available for searches.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "zenserp_yandex_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/yandex/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "yandex",
            "search"
          ]
        },
        "description": "Tool to obtain Yandex search results via Zenserp API. Use when you need programmatic access to Yandex search data after constructing a query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"gl\": \"\",\n  \"hl\": \"\",\n  \"num\": 0,\n  \"tbm\": \"\",\n  \"device\": \"\",\n  \"location\": \"\",\n  \"search_engine\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}