dropbox_get_metadata

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

Get detailed metadata for a file or folder: size, modified date, ID, sharing status, and revision info. Use before downloading or modifying to inspect properties.

Parameters

NameTypeRequiredDescription
pathstringyesFile or folder path

Example call

Arguments

{
  "path": "/Documents/budget.xlsx"
}

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_get_metadata","arguments":{"path":"/Documents/budget.xlsx"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('dropbox_get_metadata', {
  "path": "/Documents/budget.xlsx"
});

Response shape

FieldTypeDescription
namestringFile or folder name
path_displaystringDisplay path
idstringUnique file/folder ID
sizenumberFile size in bytes
modifiedstringLast modified timestamp
revstringCurrent revision identifier
is_dirbooleanWhether entry is a directory
sharing_infoobjectSharing details if shared
errorstringError code if connection failed
messagestringError message if connection failed
Full JSON Schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "File or folder name"
    },
    "path_display": {
      "type": "string",
      "description": "Display path"
    },
    "id": {
      "type": "string",
      "description": "Unique file/folder ID"
    },
    "size": {
      "type": "number",
      "description": "File size in bytes"
    },
    "modified": {
      "type": "string",
      "description": "Last modified timestamp"
    },
    "rev": {
      "type": "string",
      "description": "Current revision identifier"
    },
    "is_dir": {
      "type": "boolean",
      "description": "Whether entry is a directory"
    },
    "sharing_info": {
      "type": "object",
      "description": "Sharing details if shared",
      "properties": {
        "shared": {
          "type": "boolean",
          "description": "Whether item is shared"
        },
        "share_id": {
          "type": "string",
          "description": "Share ID if shared"
        }
      }
    },
    "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