{
  "info": {
    "name": "Docparser — mcp.ai",
    "description": "REST API for the Docparser 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/docparser",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "docparser_get_multiple_document_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/multiple/document/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "multiple",
            "document",
            "results"
          ]
        },
        "description": "Tool to retrieve parsed data from multiple documents processed by a specific parser. Use when you need to fetch results for multiple documents at once. Returns up to 100 results by default, with a max",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"list\": \"\",\n  \"limit\": 0,\n  \"format\": \"\",\n  \"sort_by\": \"\",\n  \"parser_id\": \"\",\n  \"remote_id\": \"\",\n  \"sort_order\": \"\",\n  \"include_processing_queue\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docparser_get_parser_models",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/parser/models",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "parser",
            "models"
          ]
        },
        "description": "Tool to retrieve all model layouts for a specific parser. Use when you need to list different layout configurations within a parser that help handle document variations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"parser_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docparser_list_parsers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/parsers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "parsers"
          ]
        },
        "description": "Tool to retrieve all Document Parsers linked to your account. Use when you need to view available parsers or obtain parser IDs for subsequent operations.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docparser_ping",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ping",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ping"
          ]
        },
        "description": "Tool to test API authentication and connection health check for Docparser API. Use when you need to verify that API credentials are valid and the connection is working.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}