https://mcp.box.com. The device talks to Box directly. No Box data or tokens pass through Anthropic’s infrastructure.
How the connection works
Box’s MCP server requires an OAuth client that a Box admin creates, and Box’s token endpoint requires that client’s secret. The Enterprise Admin Console stores client secrets only for Google Desktop-app clients, so for Box each device supplies the secret through a helper script, as described under Where the client secret goes. That page also explains each OAuth field.Set up the Box server
1
Create the client in Box
In the Box Admin Console, create integration credentials for the Box MCP server as described in Box’s remote MCP server guide, with
http://127.0.0.1:53280/callback as the redirect URI, and copy the generated client ID and client secret.2
Install the secret helper script on every device
Write a script that prints the client secret as the JSON object On Windows, save it as a A secret written into the script is readable by anyone who can read the file. Where your devices have a secret store or vault CLI, have the script read the secret from there instead.Distribute the script through your device management to the same absolute path on every device, in a location users can’t modify. An entry holds one path for the whole organization, so if your fleet mixes macOS and Windows, add one entry per platform with its own name and script path, and assign each to the matching group of users with per-group permission policies.
{"clientSecret": "…"} and nothing else on stdout (the full contract is under Where the client secret goes). On macOS, save the script (for example at /usr/local/bin/box-mcp-secret) and mark it executable:.cmd file, for example C:\Program Files\Corp\box-mcp-secret.cmd:3
Add the server in the Enterprise Admin Console
In the Enterprise Admin Console (claude.ai → Organization settings), open the Connectors page under Desktop 3P. Under Managed MCP servers, click Add → Blank and fill in the entry:
Click Save changes. Users’ apps pick up the new entry as described under Configuration updates. Devices need outbound HTTPS access to
mcp.box.com, account.box.com, and api.box.com.If you manage configuration through MDM or a bootstrap server instead, the equivalent entry can carry the secret inline:4
Have users connect
Each user opens Customize → Connectors in Claude Desktop, clicks Connect next to Box, and signs in to Box in the browser.