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
| Name | Type | Required | Description |
|---|---|---|---|
folder_id | string | no | The Box folder id to list. Defaults to “0”, the root folder. |
limit | number | no | Maximum number of items to return (default 100, max 1000). |
Example call
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":{}}}'
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.