{
  "info": {
    "name": "Aryn — mcp.ai",
    "description": "REST API for the Aryn 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/aryn",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "aryn_create_docset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/docset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "docset"
          ]
        },
        "description": "Tool to create a new DocSet. Use when you need to allocate a storage container before adding documents.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"schema\": {},\n  \"prompts\": {},\n  \"properties\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aryn_delete_docset",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/docset",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "docset"
          ]
        },
        "description": "Tool to delete a DocSet and all its documents. Use after confirming the DocSet ID, when you need to permanently remove a DocSet and its contents.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aryn_generate_plan",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/plan",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "plan"
          ]
        },
        "description": "Tool to generate a query plan without executing it. Use when you need to review the logical plan before running your query (e.g., \"Generate a plan for revenue breakdown by region\").",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"rag_mode\": false,\n  \"docset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aryn_get_doc_set",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/doc/set",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "doc",
            "set"
          ]
        },
        "description": "Tool to retrieve metadata for a specific DocSet by its ID. Use when you need to check DocSet details like name, creation time, properties, or prompts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docsetId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aryn_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 document by ID from Aryn DocParse storage. Returns the document's parsed elements (text, tables, sections with embeddings), custom properties, and optionally the original binary content. Us",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"doc_id\": \"\",\n  \"docset_id\": \"\",\n  \"include_binary\": false,\n  \"include_elements\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aryn_get_document_binary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/document/binary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "document",
            "binary"
          ]
        },
        "description": "Download the original binary content (e.g., PDF, image) of a document from an Aryn DocSet. This action retrieves the raw binary file that was originally uploaded to the DocSet. Use this when you need ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"docsetId\": \"\",\n  \"documentId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aryn_list_async_tasks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/async/tasks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "async",
            "tasks"
          ]
        },
        "description": "Tool to list all outstanding asynchronous tasks for the account. Use when you need to check pending or running tasks.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aryn_partition_document",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/partition/document",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "partition",
            "document"
          ]
        },
        "description": "Partition a document using Aryn DocParse to extract and structure its content elements including text, tables, and images. Supports file upload or URL input with extensive processing options for chunk",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"options\": {},\n  \"file_url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "aryn_submit_async_add_doc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/async/add/doc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "async",
            "add",
            "doc"
          ]
        },
        "description": "Tool to submit a document for asynchronous addition to a DocSet. Returns a task ID to track the operation. Use when you need to add documents to an existing DocSet and want to track the processing sta",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"options\": \"\",\n  \"file_url\": \"\",\n  \"docset_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}