box_get_user

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

Get the signed-in Box (cloud storage) user’s profile: id, name, login email, total storage space (space_amount in bytes), and used storage (space_used in bytes). Use to identify the connected account or report storage usage.

Example call

Arguments

{}

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_get_user","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('box_get_user', {});

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