Search for files in your Box account
Read the contents of a file from Box
Box File Access MCP provides a seamless integration with Box cloud storage, allowing AI assistants to search through your files and read their contents. This server supports reading PDF and Word documents, making it ideal for knowledge workers who store important documents in Box. With this MCP, you can authorize access to your Box account using either a JSON Web Token (recommended for persistent access) or a Developer Token (easier but time-limited). The server handles authentication and file operations, enabling AI assistants to work with your Box content directly.
The Box File Access MCP allows AI assistants to interact with your Box cloud storage account. It provides capabilities for searching files and reading document contents, currently supporting PDF and Word formats.
You have two main options for authenticating with Box:
This method provides persistent connection to Box and is recommended for long-term use.
Prerequisites:
Steps to set up JWT authorization:
cat /path/to/your/box-jwt-config.json | base64
This method is simpler but tokens expire after 60 minutes.
Steps to set up Developer Token authorization:
Add the following configuration to your AI assistant's MCP configuration:
{
"mcpServers": {
"box": {
"command": "npx",
"args": ["box-mcp-server"],
"env": {
"BOX_JWT_BASE64": "YOUR_BASE64_ENCODED_JWT",
"BOX_USER_ID": "YOUR_BOX_USER_ID"
}
}
}
}
{
"mcpServers": {
"box": {
"command": "npx",
"args": ["box-mcp-server"],
"env": {
"BOX_DEV_TOKEN": "YOUR_DEV_TOKEN_GOES_HERE"
}
}
}
}
The Box File Access MCP currently supports:
Support for additional file types is planned for future releases.