{
  "info": {
    "name": "Recall — mcp.ai",
    "description": "REST API for the Recall 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/recall",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "recall_list_cards",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cards"
          ]
        },
        "description": "List Recall cards. Filters: tags[] (UUIDs), date_from/date_to (ISO 8601), source_url_contains."
      }
    },
    {
      "name": "recall_get_card",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cards/{card_id}",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cards",
            "{card_id}"
          ]
        },
        "description": "Card content (chunks). focus_query focuses chunks; max_chunks (1-50)."
      }
    },
    {
      "name": "recall_search",
      "request": {
        "method": "GET",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search"
          ]
        },
        "description": "Semantic search. q required; mode focused|exhaustive; filters card_id/tags/dates/source_url_contains."
      }
    }
  ]
}