box_list_folder

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

List the files and subfolders inside a Box (enterprise cloud storage) folder. Pass a folder id, or omit it to list the root folder (“0”). Returns each item’s id, type (file or folder), name, size in bytes, and last-modified time. Use to browse a user’s Box documents and files.

Parameters

NameTypeRequiredDescription
folder_idstringnoThe Box folder id to list. Defaults to “0”, the root folder.
limitnumbernoMaximum number of items to return (default 100, max 1000).

Example call

Arguments

{
  "folder_id": "0"
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('box_list_folder', {
  "folder_id": "0"
});

More examples

{
  "folder_id": "123456789",
  "limit": 50
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026