{
  "info": {
    "name": "Supermemory — mcp.ai",
    "description": "REST API for the Supermemory 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/supermemory",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "supermemory_add_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "document"
          ]
        },
        "description": "Ingest text or a public URL as a Supermemory document and return its document ID and initial processing status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"dreaming\": \"\",\n  \"metadata\": {},\n  \"custom_id\": \"\",\n  \"task_type\": \"\",\n  \"container_tag\": \"\",\n  \"entity_context\": \"\",\n  \"filter_by_metadata\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_add_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "documents"
          ]
        },
        "description": "Add 1 to 600 documents in one request, with explicit per-document metadata and processing options. HTTP 200 may contain partial failures; callers must inspect failed, success, and every result rather ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dreaming\": \"\",\n  \"documents\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_delete_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "document"
          ]
        },
        "description": "Permanently delete one document by ID. This does not remove the document's container-tag settings record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_get_account_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "status"
          ]
        },
        "description": "Return the connected Supermemory organization's plan, credit balance, high-level usage, and reset date.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_get_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document"
          ]
        },
        "description": "Get one document's content, metadata, source details, and processing status by document ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_get_document_chunks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document/chunks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document",
            "chunks"
          ]
        },
        "description": "Return the ordered extracted chunks for one processed document.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_get_profile",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/profile",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "profile"
          ]
        },
        "description": "Retrieve the static, dynamic, or bucketed profile learned for one container tag, optionally with matching search results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"buckets\": \"\",\n  \"filters\": {},\n  \"include\": \"\",\n  \"threshold\": 0,\n  \"container_tag\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_list_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "documents"
          ]
        },
        "description": "List documents, optionally filtered by containers, metadata, or filepath, one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"filters\": {},\n  \"filepath\": \"\",\n  \"next_cursor\": \"\",\n  \"container_tags\": \"\",\n  \"include_content\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_list_memories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/memories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "memories"
          ]
        },
        "description": "List extracted memory entries for one or more container tags, one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"limit\": 0,\n  \"order\": \"\",\n  \"filters\": {},\n  \"next_cursor\": \"\",\n  \"container_tags\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_search_context",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/context",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "context"
          ]
        },
        "description": "Semantically search Supermemory memories, document chunks, or both, with optional container and metadata filters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"rerank\": false,\n  \"filters\": {},\n  \"include\": {},\n  \"aggregate\": false,\n  \"threshold\": 0,\n  \"search_mode\": \"\",\n  \"rewrite_query\": false,\n  \"container_tags\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "supermemory_update_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "document"
          ]
        },
        "description": "Update the content, metadata, container, or processing configuration of one existing document. When metadata is supplied, it completely replaces the document's metadata, so omitted metadata keys are r",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"content\": \"\",\n  \"metadata\": {},\n  \"custom_id\": \"\",\n  \"task_type\": \"\",\n  \"document_id\": \"\",\n  \"container_tag\": \"\",\n  \"filter_by_metadata\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}