{
  "info": {
    "name": "DocuPipe — mcp.ai",
    "description": "REST API for the DocuPipe 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/docupipe",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "docupipe_create_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "schema"
          ]
        },
        "description": "Create a reusable extraction schema from a valid JSON Schema and optional extraction guidelines.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"guidelines\": \"\",\n  \"json_schema\": {},\n  \"schema_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_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 previously submitted DocuPipe document by ID. This destructive operation cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_delete_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "documents"
          ]
        },
        "description": "Permanently delete multiple previously submitted DocuPipe documents by ID in one batch. This destructive operation cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_find_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "documents"
          ]
        },
        "description": "Browse documents by dataset and creation time, or search filenames and document IDs when query is provided. Returns one page and a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"query\": \"\",\n  \"dataset\": \"\",\n  \"next_cursor\": \"\",\n  \"to_timestamp\": \"\",\n  \"from_timestamp\": \"\",\n  \"exclude_payload\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_find_jobs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/find/jobs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "find",
            "jobs"
          ]
        },
        "description": "Retrieve one asynchronous job by ID, or list and filter jobs when job_id is omitted. Job details expose status, progress, errors, outputs, and credit use.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"job_id\": \"\",\n  \"status\": \"\",\n  \"end_date\": \"\",\n  \"job_type\": \"\",\n  \"schema_id\": \"\",\n  \"start_date\": \"\",\n  \"document_id\": \"\",\n  \"next_cursor\": \"\",\n  \"new_document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_get_account_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "usage"
          ]
        },
        "description": "Return current plan and credit state together with job counts and credits consumed by job type, optionally including daily usage.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include_daily_usage\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_get_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document"
          ]
        },
        "description": "Retrieve a processed document, including processing state, parsed content, page count, metadata, and file details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"document_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_get_schema",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/schema",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "schema"
          ]
        },
        "description": "Retrieve one extraction schema and its full JSON Schema definition by ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schema_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_get_standardization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/standardization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "standardization"
          ]
        },
        "description": "Retrieve one completed standardization as structured JSON, including extraction data and field metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"standardization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_list_schemas",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/schemas",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "schemas"
          ]
        },
        "description": "List extraction schemas available to the connected workspace, optionally including each full JSON Schema payload. Returns one page and an opaque continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"next_cursor\": \"\",\n  \"exclude_payload\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_list_standardizations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/standardizations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "standardizations"
          ]
        },
        "description": "List structured extraction results, filtered by schema, document, or up to 1000 known standardization IDs. Returns one page and a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"schema_id\": \"\",\n  \"document_id\": \"\",\n  \"next_cursor\": \"\",\n  \"exclude_payload\": false,\n  \"standardization_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_standardize_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/standardize/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "standardize",
            "document"
          ]
        },
        "description": "Start V3 agentic structured extraction for one processed document and return the job and standardization IDs. Standard effort costs 2 credits per page; high effort costs 4 credits per page. Omitting s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"pages\": \"\",\n  \"timeout\": 0,\n  \"schema_id\": \"\",\n  \"guidelines\": \"\",\n  \"document_id\": \"\",\n  \"effort_level\": \"\",\n  \"use_metadata\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docupipe_upload_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "document"
          ]
        },
        "description": "Submit one local file or remote file URL for asynchronous parsing. Returns the document and job IDs used to track processing. When workflow_id is provided, also run that existing workflow after parsin",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"file\": {},\n  \"pages\": \"\",\n  \"dataset\": \"\",\n  \"timeout\": 0,\n  \"filename\": \"\",\n  \"metadata\": {},\n  \"file_type\": \"\",\n  \"workflow_id\": \"\",\n  \"parse_version\": 0,\n  \"file_extension\": \"\",\n  \"processing_method\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}