Labsco
box-community logo

Box

โ˜… 101

from box-community

Interact with the Intelligent Content Management platform through Box AI.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredAdvanced setup

Box MCP Server

[!WARNING] This repository is discontinued and no longer maintained. Box now provides an officially supported hosted MCP server with the best experience and full functionality. Please migrate to the hosted MCP server: Set up the Box MCP Server โ†’

Box Community MCP Server Tools

Below is a summary of the available tools:

Tools available Description box_tools_ai AI-powered file and hub queries box_tools_collaboration Manage file/folder collaborations box_tools_docgen Document generation and template management box_tools_files File operations (read, upload, download) box_tools_folders Folder operations (list, create, delete, update) box_tools_generic Generic Box API utilities box_tools_groups Group management and queries box_tools_metadata Metadata template and instance management box_tools_search Search files and folders box_tools_shared_links Shared link management for files/folders/web-links box_tools_tasks Task and task assignment management box_tools_users User management and queries box_tools_web_link Web link creation and management

Box Community MCP Server Operations Details

Command line interface parameters

To run the MCP server with specific configurations, you can use the following command line parameters:

Copy & paste โ€” that's it
uv run src/mcp_server_box.py --help
Copy & paste โ€” that's it
usage: mcp_server_box.py [-h] [--transport {stdio,sse,http}] [--host HOST] [--port PORT] [--mcp-auth-type {oauth,token,none}] [--box-auth-type {oauth,ccg,jwt,mcp_client}]

Box Community MCP Server

options:
 -h, --help show this help message and exit
 --transport {stdio,sse,http}
 Transport type (default: stdio)
 --host HOST Host for SSE/HTTP transport (default: localhost)
 --port PORT Port for SSE/HTTP transport (default: 8005)
 --mcp-auth-type {oauth,token,none}
 Authentication type for MCP server (default: token)
 --box-auth-type {oauth,ccg,jwt,mcp_client}
 Authentication type for Box API (default: oauth)

For detailed information about authentication types, configurations, and use cases, see the Authentication Guide.

Claude Desktop Configuration

STDIO mode

Edit your claude_desktop_config.json:

code ~/Library/Application\ Support/Claude/claude_desktop_config.json

Add the configuration:

Copy & paste โ€” that's it
{
 "mcpServers": {
 "mcp-server-box": {
 "command": "uv",
 "args": [
 "--directory",
 "/path/to/mcp-server-box",
 "run",
 "src/mcp_server_box.py"
 ]
 }
 }
}

Restart Claude if it is running.

HTTP Mode

Assuming your MCP server is running on https://mcp.myserver.com/mcp

  • Go to Claude -> Settings -> Connectors

  • Select Add custom connector

  • Configurations:

  • Give it a name

  • Enter the URL e.g. https://mcp.myserver.com/mcp

  • Optionally enter the client id and client secret

  • Click add

  • Click connect. The OAuth flow should start. Complete the flow

  • Back in Claude, click Configure. You should see all the tools available.