{
  "info": {
    "name": "Linkup — mcp.ai",
    "description": "REST API for the Linkup 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/linkup",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "linkup_create_response",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/response",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "response"
          ]
        },
        "description": "Proxy endpoint for OpenAI-compatible response generation. Used when the OpenAI client's base URL is set to Linkup. Supports 'linkup-standard' for faster results and 'linkup-deep' for more comprehensiv",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"text\": {},\n  \"input\": \"\",\n  \"model\": \"\",\n  \"instructions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "linkup_fetch_webpage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/webpage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "webpage"
          ]
        },
        "description": "Fetch and retrieve a markdown representation of a webpage from a given URL. Supports optional JavaScript rendering for single-page applications, raw HTML extraction, and image extraction from the webp",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"renderJs\": false,\n  \"extractImages\": false,\n  \"includeRawHtml\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "linkup_get_credits_balance",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/credits/balance",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "credits",
            "balance"
          ]
        },
        "description": "Tool to retrieve the current credits balance for your Linkup account. Returns the number of credits remaining that can be used for search and fetch operations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "linkup_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search"
          ]
        },
        "description": "Search the web and retrieve insights using Linkup's API. This action provides three output modes: natural language answers with sources (sourcedAnswer), raw search context (searchResults), or custom s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"depth\": \"\",\n  \"query\": \"\",\n  \"to_date\": \"\",\n  \"from_date\": \"\",\n  \"max_results\": 0,\n  \"output_type\": \"\",\n  \"include_images\": false,\n  \"exclude_domains\": \"\",\n  \"include_domains\": \"\",\n  \"include_sources\": false,\n  \"include_inline_citations\": false,\n  \"structured_output_schema\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}