Securely connect MCP-compatible agents to your Box content and Box AI—without moving data out of Box. The remote Box MCP server lets AI agent platforms (e.g., Copilot Studio, Claude, Mistral Le Chat) connect to Box to securely query and use Box data and AI-powered tools, while keeping content protected. Authorization is handled via OAuth so users can grant controlled access from within the client
Add this skill
npx mdskills install box/mcp-server-box-remoteWell-documented remote MCP server with OAuth security and Box AI integration, but overstates permissions
1# Box MCP Server (Remote)23Securely connect MCP-compatible agents to your Box content and Box AI—without moving data out of Box.45> **Endpoint**: `https://mcp.box.com`67---89## Overview1011The remote Box MCP server lets AI agent platforms (e.g., **Copilot Studio**, **Claude**, **Mistral Le Chat**) connect to Box to securely query and use Box data and AI-powered tools, while keeping content protected. Authorization is handled via OAuth so users can grant controlled access from within the client they’re using.1213[Learn more in the remote Box MCP server guide](https://developer.box.com/guides/box-mcp/remote/)1415> Looking for the self-hosted/local version? See [box-community/mcp-server-box](https://github.com/box-community/mcp-server-box).1617---1819## Capabilities2021The remote Box MCP server provides tools across several areas, such as:22- **User info** (e.g., identify the authenticated user)23- **File and folder operations** (read content, list folders, search files/folders, etc.)24- **Box AI tools** (Q&A across files, metadata extraction, etc.)2526For the complete and most up-to-date set of supported tools, see the [remote Box MCP server documentation](https://developer.box.com/guides/box-mcp/remote/).2728---2930## Setup3132To connect an MCP client to the remote Box MCP server, you’ll first configure an OAuth app in Box, then use its credentials in your client. The preferred path is to use the predefined **Box MCP Server** integration in the [Admin Console](https://support.box.com/hc/en-us/articles/360043695714-Admin-Console-Guide), but in certain flows (e.g., the [GitHub MCP registry](https://github.com/mcp)), you may need to create your own OAuth app in the [Developer Console](https://app.box.com/developers/console) instead.3334### 1. Configure an OAuth app in Box3536Choose one of the following options:3738- **Admin Console flow (preferred):** Enable or configure the Box MCP server from **Admin Console → Integrations**.39- **Developer Console flow:** [Create an OAuth app](https://developer.box.com/guides/authentication/oauth2/oauth2-setup/) with the proper redirect URI and scopes.4041For detailed instructions, see the [remote Box MCP server guide](https://developer.box.com/guides/box-mcp/remote/).424344### 2. Connect from your MCP client4546Most clients or platforms let you add a remote MCP server by URL and will guide you through the OAuth flow. Here are some of the details you’ll typically need to provide:4748- **Endpoint URL:** `https://mcp.box.com`49- **Name:** a name of your choice (e.g., `box-remote-mcp`)50- **Authorization:** Bearer token (via OAuth 2.0)51- **Client ID** and **Client Secret**: obtained from your app’s credentials (Admin Console for the predefined **Box MCP Server** integration, or Developer Console if you created your own OAuth app)52- **Redirect URI**: provided by your client and must be added to your app configuration (via the Admin Console or Developer Console, depending on your flow)5354See the [remote Box MCP server guide](https://developer.box.com/guides/box-mcp/remote/) for client-specific connection examples (Claude, Copilot Studio, Le Chat).5556---5758## OAuth & Discovery5960The remote Box MCP server is an **OAuth‑protected resource** backed by Box’s authorization server:6162- [Resource metadata](https://mcp.box.com/.well-known/oauth-protected-resource)63- [Authorization server metadata](https://api.box.com/.well-known/oauth-authorization-server)6465For implementation details, see the [Box authentication guide](https://developer.box.com/guides/authentication/).6667**Using tokens with the Box API**6869All Box API calls require a valid [Access Token](https://developer.box.com/guides/authentication/tokens/access-tokens/). Example:7071```bash72curl https://api.box.com/2.0/users/me \73 -H "authorization: Bearer <ACCESS_TOKEN>"74```7576---7778## Terms7980Use of the Box MCP server and Box APIs is subject to the **Box Terms of Service**:81https://www.box.com/legal/termsofservice8283---8485## Support & Docs8687- Remote Box MCP server: https://developer.box.com/guides/box-mcp/remote/88- Authentication guide: https://developer.box.com/guides/authentication/89- API status: https://status.box.com/90- Community: https://community.box.com/91
Full transparency — inspect the skill content before installing.