{
  "info": {
    "name": "Serply — mcp.ai",
    "description": "REST API for the Serply 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/serply",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "serply_perform_image_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/perform/image/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "perform",
            "image",
            "search"
          ]
        },
        "description": "Performs an image search using the Serply API to find images matching a text query. This tool searches for images on the web and returns results with image URLs, thumbnails, dimensions, titles, and so",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gl\": \"\",\n  \"hl\": \"\",\n  \"num\": 0,\n  \"safe\": \"\",\n  \"query\": \"\",\n  \"start\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "serply_perform_maps_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/perform/maps/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "perform",
            "maps",
            "search"
          ]
        },
        "description": "Tool to perform a maps search. Use when you need to find geographic locations for a given query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "serply_perform_scholar_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/perform/scholar/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "perform",
            "scholar",
            "search"
          ]
        },
        "description": "Tool to perform an academic scholar search via Serply. Use when you need scholarly literature search results for a specific query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"gl\": \"\",\n  \"hl\": \"\",\n  \"num\": 0,\n  \"query\": \"\",\n  \"newWindow\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}