{
  "info": {
    "name": "Dropbox — mcp.ai",
    "description": "REST API for the Dropbox 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/dropbox",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "dropbox_create_file_request",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/file/request",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "file",
            "request"
          ]
        },
        "description": "Tool to create a new file request in dropbox. use when you need to request files from others by generating a unique link for uploads to a specified dropbox folder, optionally with a deadline.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"open\": false,\n  \"title\": \"\",\n  \"deadline\": {},\n  \"destination\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_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 at a specified path in dropbox. use when you need to organize files by creating a new directory. requires the 'files.content.write' scope.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\",\n  \"autorename\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_create_paper",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/paper",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "paper"
          ]
        },
        "description": "Creates a new dropbox paper document at the specified path using html or markdown content.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\",\n  \"content\": \"\",\n  \"import_format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_delete_file_or_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/file/or/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "file",
            "or",
            "folder"
          ]
        },
        "description": "Permanently deletes the file or folder at the specified path in dropbox. use when you need to remove a specific file or folder. requires the `files.content.write` scope.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_get_about_me",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/about/me",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "about",
            "me"
          ]
        },
        "description": "Tool to get information about the current user's dropbox account. use when you need to retrieve account details like email, name, or account type.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_list_files_in_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/files/in/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "files",
            "in",
            "folder"
          ]
        },
        "description": "Tool to list files and folders in a specified dropbox directory. use when you need to see the contents of a folder, including subfolders if recursive is true.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\",\n  \"limit\": 0,\n  \"recursive\": false,\n  \"include_deleted\": false,\n  \"include_media_info\": false,\n  \"include_non_downloadable_files\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_list_folders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/folders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "folders"
          ]
        },
        "description": "Retrieves a list of folders, files, and deleted entries from a specified dropbox path.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\",\n  \"limit\": 0,\n  \"recursive\": false,\n  \"include_deleted\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_move_file_or_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/move/file/or/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "move",
            "file",
            "or",
            "folder"
          ]
        },
        "description": "Move file or folder",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"to_path\": \"\",\n  \"from_path\": \"\",\n  \"autorename\": false,\n  \"allow_shared_folder\": false,\n  \"allow_ownership_transfer\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_read_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/read/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "read",
            "file"
          ]
        },
        "description": "Downloads a file from the specified dropbox path, requiring `files.content.read` scope.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"path\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_search_file_or_folder",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/file/or/folder",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "file",
            "or",
            "folder"
          ]
        },
        "description": "Tool to search for files and folders in dropbox. use when you need to find an item by name or content, optionally within a specific path or with other filters, and paginate through results. example: s",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"options\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "dropbox_upload_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "file"
          ]
        },
        "description": "Uploads a file to a specified path in the user's dropbox, with options for handling existing files.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"mute\": false,\n  \"path\": \"\",\n  \"content\": {},\n  \"autorename\": false,\n  \"strict_conflict\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}