{
  "info": {
    "name": "Docsumo — mcp.ai",
    "description": "REST API for the Docsumo 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/docsumo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "docsumo_add_table_row",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/table/row",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "table",
            "row"
          ]
        },
        "description": "Tool to add a new empty row at the end of a specified database table in Docsumo. Use when you need to append a blank row for data entry. The new row will automatically receive the next sequential ID a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ddid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_create_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "folder"
          ]
        },
        "description": "Tool to create a new folder in Docsumo for organizing documents by category or type. Use when you need to organize documents into specific categories (e.g., invoices, contracts).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\",\n  \"folder_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_delete_table",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/table",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "table"
          ]
        },
        "description": "Tool to delete one or more database tables from Docsumo. Use when you need to permanently remove tables from the database. This is a destructive operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dd_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_get_enabled_document_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/enabled/document/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "enabled",
            "document",
            "types"
          ]
        },
        "description": "Retrieves a summary of document types available in Docsumo, including both enabled and disabled document types for the authenticated user. This endpoint provides information about which document types",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_get_external_agents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/external/agents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "external",
            "agents"
          ]
        },
        "description": "Tool to list all external agents configured in your Docsumo account. Use when you need to retrieve information about agents available for document or case processing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_get_table_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/table/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "table",
            "data"
          ]
        },
        "description": "Tool to retrieve all data from a specific database table in Docsumo. Use when you need to fetch records from a custom database table using its unique identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ddid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_get_user_document_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/user/document/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "user",
            "document",
            "types"
          ]
        },
        "description": "Tool to list available user document types and user info. Use when you need to discover all supported document classifications and user limits.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_list_all_documents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/documents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "documents"
          ]
        },
        "description": "Tool to fetch a comprehensive list of all documents in your Docsumo account. Use when you need to retrieve, filter, or search documents by type, status, creation date, folder, or keyword.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"view\": \"\",\n  \"limit\": 0,\n  \"offset\": 0,\n  \"status\": \"\",\n  \"sort_by\": \"\",\n  \"doc_type\": \"\",\n  \"folder_id\": \"\",\n  \"created_date\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_list_enabled_document_types",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/enabled/document/types",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "enabled",
            "document",
            "types"
          ]
        },
        "description": "Tool to retrieve a list of document types currently enabled for your account. Use when you need to discover which document types are available for processing.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_list_external_agent_cases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/external/agent/cases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "external",
            "agent",
            "cases"
          ]
        },
        "description": "Tool to list all cases for a specific external agent casetype. Use when you need to retrieve cases with optional filtering by stage, assignee, workflow state, or date ranges. Supports pagination and s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"offset\": 0,\n  \"sort_by\": \"\",\n  \"stage_id\": \"\",\n  \"assigned_to\": \"\",\n  \"casetype_id\": \"\",\n  \"workflow_state\": \"\",\n  \"created_date_to\": \"\",\n  \"modified_date_to\": \"\",\n  \"created_date_from\": \"\",\n  \"modified_date_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "docsumo_post_mca_analysis",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/mca/analysis",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "mca",
            "analysis"
          ]
        },
        "description": "Performs Merchant Cash Advance (MCA) analysis on uploaded bank statement documents. This action analyzes bank statements to generate comprehensive financial summaries including: - Account holder infor",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"doc_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}