dropbox_list_folder

Pack: dropbox · Endpoint: https://gateway.pipeworx.io/dropbox/mcp

List files and folders in a Dropbox directory. Returns names, types, sizes, and modification dates. Use when browsing folder contents or checking what’s stored at a path.

Parameters

NameTypeRequiredDescription
pathstringyesFolder path (e.g., "" for root, “/Documents”)
limitnumbernoMax entries to return (default 100)

Example call

Arguments

{
  "path": ""
}

curl

curl -X POST https://gateway.pipeworx.io/dropbox/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"dropbox_list_folder","arguments":{"path":""}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('dropbox_list_folder', {
  "path": ""
});

More examples

{
  "path": "/Documents",
  "limit": 50
}

Response shape

FieldTypeDescription
entriesarrayArray of files and folders in the directory
cursorstringPagination cursor for more results
has_morebooleanWhether more entries exist
errorstringError code if connection failed
messagestringError message if connection failed
Full JSON Schema
{
  "type": "object",
  "properties": {
    "entries": {
      "type": "array",
      "description": "Array of files and folders in the directory",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "File or folder name"
          },
          "path_display": {
            "type": "string",
            "description": "Display path of entry"
          },
          "id": {
            "type": "string",
            "description": "Unique ID for entry"
          },
          "size": {
            "type": "number",
            "description": "File size in bytes"
          },
          "modified": {
            "type": "string",
            "description": "Last modified timestamp"
          },
          "rev": {
            "type": "string",
            "description": "Revision identifier"
          }
        }
      }
    },
    "cursor": {
      "type": "string",
      "description": "Pagination cursor for more results"
    },
    "has_more": {
      "type": "boolean",
      "description": "Whether more entries exist"
    },
    "error": {
      "type": "string",
      "description": "Error code if connection failed"
    },
    "message": {
      "type": "string",
      "description": "Error message if connection failed"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "dropbox": {
      "url": "https://gateway.pipeworx.io/dropbox/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026