{
  "info": {
    "name": "Openperplex — mcp.ai",
    "description": "REST API for the Openperplex 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/openperplex",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "openperplex_custom_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/custom/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "custom",
            "search"
          ]
        },
        "description": "Tool to perform a custom search with optional filtering and field selection. Use when you need tailored results based on query, filters, size, or fields.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"query\": \"\",\n  \"filter\": {},\n  \"user_prompt\": \"\",\n  \"system_prompt\": \"\",\n  \"exclude_fields\": \"\",\n  \"include_fields\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openperplex_custom_search_stream",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/custom/search/stream",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "custom",
            "search",
            "stream"
          ]
        },
        "description": "Tool to perform custom streaming search with custom prompts. Use when you need AI-powered search responses with custom system and user prompts for more specific or tailored queries. Returns aggregated",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"top_p\": 0,\n  \"location\": \"\",\n  \"search_type\": \"\",\n  \"temperature\": 0,\n  \"user_prompt\": \"\",\n  \"return_images\": false,\n  \"system_prompt\": \"\",\n  \"recency_filter\": \"\",\n  \"return_sources\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openperplex_get_website_markdown",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/website/markdown",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "website",
            "markdown"
          ]
        },
        "description": "Tool to retrieve the markdown content of a specified website. Use after confirming the URL. Supports optional formats like 'gfm' or 'commonmark'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"markdown_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openperplex_get_website_screenshot",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/website/screenshot",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "website",
            "screenshot"
          ]
        },
        "description": "Tool to capture a screenshot of a website. Use after confirming the target URL is reachable.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"full_page\": false,\n  \"viewport_width\": 0,\n  \"viewport_height\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openperplex_get_website_text",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/website/text",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "website",
            "text"
          ]
        },
        "description": "Tool to retrieve the main text content of a specified website URL. Use when you need content extraction from online articles or pages. Use after confirming the URL is publicly accessible.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"clean\": false,\n  \"max_length\": 0,\n  \"return_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openperplex_query_from_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/query/from/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "query",
            "from",
            "url"
          ]
        },
        "description": "Tool to query documents from a URL. Use when you need to fetch and interrogate web-hosted content with a natural language question.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"model\": \"\",\n  \"query\": \"\",\n  \"answer_type\": \"\",\n  \"response_language\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openperplex_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search"
          ]
        },
        "description": "Tool to search documents using query parameters. Use when you have a search query and optional filters ready.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"query\": \"\",\n  \"location\": \"\",\n  \"answer_type\": \"\",\n  \"search_type\": \"\",\n  \"date_context\": \"\",\n  \"return_images\": false,\n  \"recency_filter\": \"\",\n  \"return_sources\": false,\n  \"return_citations\": false,\n  \"response_language\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "openperplex_search_stream",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/stream",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "stream"
          ]
        },
        "description": "Tool to stream search results from OpenPerplex. Use when real-time AI-powered search responses are needed. Returns aggregated text response along with optional sources, images, and citations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"model\": \"\",\n  \"query\": \"\",\n  \"location\": \"\",\n  \"answer_type\": \"\",\n  \"search_type\": \"\",\n  \"date_context\": \"\",\n  \"return_images\": false,\n  \"recency_filter\": \"\",\n  \"return_sources\": false,\n  \"return_citations\": false,\n  \"response_language\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}