Loading...

This MCP server allows searching and reading files from Box, using JWT or developer tokens for authentication, with potential risks depending on the token type and permissions.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server allows searching and reading files from Box, using JWT or developer tokens for authentication, with potential risks depending on the token type and permissions.
This MCP server is relatively safe for read-only operations. The biggest risk comes from misconfiguration of the JWT or using a developer token for extended periods. Ensure the JWT has the least privilege necessary and rotate tokens regularly.
Performance depends on the size and number of files being searched and read. Network latency can also be a factor.
Cost depends on Box API usage. Be mindful of API rate limits and storage costs.
{
"mcpServers": {
"box": {
"command": "npx",
"args": ["box-mcp-server"],
"env": {
"BOX_JWT_BASE64": "YOUR_BASE64_ENCODED_JWT",
"BOX_USER_ID": "123456"
}
}
}
}search_filesSearches for files within the Box account.
Read-only operation, no modification of data.
read_fileReads the content of a file from Box.
Read-only operation, no modification of data.
Token
This MCP server is relatively safe for read-only operations. The biggest risk comes from misconfiguration of the JWT or using a developer token for extended periods. Ensure the JWT has the least privilege necessary and rotate tokens regularly.
The server operates in read-only mode, limiting the risk of unintended modifications.
Production Tip
Use JWT authentication with narrowly scoped permissions for production environments.
JWT and Developer Token authentication are supported.
A developer token lasts for 60 minutes.
PDF and Word files are supported.
No, this server only supports reading files.
No, developer tokens are intended for development purposes only. Use JWT for production.
You need a Box enterprise account and a JWT configuration file. See the README for details.
The JWT should have the minimum necessary permissions for searching and reading files.