dennisonbertram/mcp-box
If you are the rightful owner of mcp-box and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The Box MCP Server is a Model Context Protocol server that facilitates secure access to Box cloud storage, enabling interaction with files, folders, and AI capabilities without local file persistence.
Box MCP Server
A Model Context Protocol (MCP) server that provides secure access to Box cloud storage without local file persistence. This server enables Large Language Models to interact with Box files, folders, and AI capabilities through a standardized MCP interface.
Features
š§ 8 Core Tools (Intent-Based)
box_save_documents
- Batch upload documents with automatic folder creationbox_read_document
- Stream document content without local storagebox_manage_folders
- Create and organize folder structuresbox_explore_storage
- Navigate Box directory tree with filteringbox_share_content
- Create shared links and manage collaborationsbox_analyze_document
- Use Box AI for document analysis, Q&A, and extractionbox_search_content
- Natural language search with advanced filteringbox_retrieve_documents
- Batch retrieval with optional local saving
š MCP Resources (6 URI Templates)
box://file/{fileId}
- Access specific Box files by IDbox://folder/{folderId}
- Access specific Box folders by IDbox://search?q={query}
- Search Box content with query parametersbox://user/storage
- Current user's storage quota and usagebox://user/recent
- Recently accessed filesbox://folder/root/tree
- Complete folder structure from root
š¬ MCP Prompts (5 Interactive Templates)
share_file
- Create shared links with customizable permissionsanalyze_document
- Use Box AI to analyze documents with specific promptsorganize_folder
- Organize files using different strategies (by date, type, name)bulk_upload
- Upload multiple files with folder organizationcollaboration_setup
- Set up collaboration with specific users and roles
š Security & Compliance
- Zero Local Storage - All documents remain in Box cloud
- Multi-Auth Support - OAuth 2.0, Client Credentials Grant (CCG), JWT
- Encrypted Credentials - Secure token storage and auto-refresh
- Enterprise-Grade - Leverages Box's enterprise security features
Quick Start
Prerequisites
- Box Developer Account - Create at Box Developer Console
- Node.js 18+ - Download Node.js
- Box App Configuration - OAuth 2.0 or Client Credentials Grant app
Installation
# Clone and install
git clone https://github.com/your-org/mcp-box
cd mcp-box
npm install
# Build the server
npm run build
Configuration
Create a .env
file in the project root:
# Authentication Method (oauth | ccg)
AUTH_TYPE=oauth
# Box App Credentials
BOX_CLIENT_ID=your_client_id_here
BOX_CLIENT_SECRET=your_client_secret_here
BOX_ENTERPRISE_ID=your_enterprise_id_here # Required for CCG
# Server Configuration
MCP_TRANSPORT=stdio # stdio | http
LOG_LEVEL=info # debug | info | warn | error
NODE_ENV=development
Authentication Setup
OAuth 2.0 (Recommended for individual use)
Step 1: Box Developer Console Setup
-
Go to Box Developer Console: https://developer.box.com/
-
Create Custom App:
- Click "Create New App"
- Select "Custom App"
- Choose "User Authentication (OAuth 2.0)"
- Name your app (e.g., "MCP Box Server")
-
Configure OAuth Settings:
- Redirect URI:
http://localhost:3000/auth/callback
- Application Scopes: Select all needed permissions:
- ā Read all files and folders
- ā Write all files and folders
- ā Manage users
- ā Manage enterprise properties
- Save your configuration
- Redirect URI:
-
Get Credentials:
- Copy Client ID
- Copy Client Secret
Step 2: Configure Your .env File
# OAuth 2.0 Configuration
AUTH_TYPE=oauth
BOX_CLIENT_ID=your_client_id_here
BOX_CLIENT_SECRET=your_client_secret_here
# Server Configuration
MCP_TRANSPORT=stdio
LOG_LEVEL=info
NODE_ENV=development
Step 3: First-Time Authentication
# Build and start the server
npm run build
npm start
What happens:
- Server detects no stored OAuth tokens
- Opens browser to Box login page automatically
- You log in with your Box credentials
- Box redirects back with authorization code
- Server exchanges code for access/refresh tokens
- Tokens are securely stored for future use
Client Credentials Grant (Enterprise)
Step 1: Box Developer Console Setup
-
Go to Box Developer Console: https://developer.box.com/
-
Create Custom App:
- Click "Create New App"
- Select "Custom App"
- Choose "Server Authentication (Client Credentials Grant)"
- Name your app (e.g., "MCP Box Server Enterprise")
-
Configure CCG Settings:
- Application Scopes: Select enterprise permissions needed
- Enterprise ID: Note your enterprise ID
- Submit for Approval: Enterprise admin must approve
-
Get Credentials:
- Copy Client ID
- Copy Client Secret
- Copy Enterprise ID
Step 2: Configure Your .env File
# CCG Configuration
AUTH_TYPE=ccg
BOX_CLIENT_ID=your_client_id
BOX_CLIENT_SECRET=your_client_secret
BOX_ENTERPRISE_ID=your_enterprise_id
# Server Configuration
MCP_TRANSPORT=stdio
LOG_LEVEL=info
NODE_ENV=production
Step 3: Enterprise Admin Approval
- Enterprise admin must approve the app in Box Admin Console
- Once approved, server will authenticate automatically
Integration Guides
Claude Code Integration
Add this MCP server to Claude Code for seamless Box integration:
-
Build the server:
npm run build
-
Add to Claude Code configuration:
Option A: Via Claude Code UI
- Open Claude Code settings
- Navigate to "MCP Servers"
- Add new server with these settings:
- Name:
box-mcp-server
- Command:
node
- Args:
["/Users/your-username/path-to/mcp-box/dist/index.js"]
- Environment Variables: Add your
.env
variables
- Name:
Option B: Edit Claude Code config file
{ "mcpServers": { "box-mcp-server": { "command": "node", "args": ["/Users/your-username/path-to/mcp-box/dist/index.js"], "env": { "AUTH_TYPE": "oauth", "BOX_CLIENT_ID": "your_client_id", "BOX_CLIENT_SECRET": "your_client_secret" } } } }
-
Restart Claude Code and verify the server appears in MCP servers list
-
Test the integration:
@box-mcp-server List my recent Box files @box-mcp-server Analyze the quarterly report in folder "Reports/2024" @box-mcp-server Share the presentation with my team
Claude Desktop Integration
For Claude Desktop, add to your MCP configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"box-mcp-server": {
"command": "node",
"args": ["/path/to/mcp-box/dist/index.js"],
"env": {
"AUTH_TYPE": "oauth",
"BOX_CLIENT_ID": "your_client_id",
"BOX_CLIENT_SECRET": "your_client_secret"
}
}
}
}
Other MCP Clients
The server supports standard MCP transports:
STDIO (Default):
node dist/index.js
HTTP with Server-Sent Events:
MCP_TRANSPORT=http MCPSERVER_PORT=3000 AUTH_TOKEN=your_secret node dist/index.js
Usage Examples
Document Management
// Save multiple documents with organization
{
"name": "box_save_documents",
"arguments": {
"documents": [
{
"content": "Meeting notes content...",
"path": "Projects/2024/Q4/meeting-notes.md",
"metadata": { "classification": "Internal" }
}
],
"options": {
"createFolders": true,
"shareSettings": { "createLink": true, "linkAccess": "company" }
}
}
}
AI-Powered Analysis
// Analyze document with Box AI
{
"name": "box_analyze_document",
"arguments": {
"path": "Contracts/partnership-agreement.pdf",
"analysisType": "qa",
"options": {
"questions": ["What are the key payment terms?", "When does this contract expire?"]
}
}
}
Smart Search
// Natural language search
{
"name": "box_search_content",
"arguments": {
"query": "quarterly financial reports from 2024 with revenue data",
"filters": {
"extensions": ["pdf", "xlsx"],
"dateRange": { "from": "2024-01-01" },
"includeContent": true
}
}
}
MCP Protocol Support
This server implements the full MCP specification (v2025-06-18):
- ā Tools - 8 intent-based tools with structured input/output
- ā Resources - 6 Box URI templates for LLM context
- ā Prompts - 5 interactive templates for common workflows
- ā Transports - STDIO and HTTP/SSE support
- ā Authentication - Bearer token support for HTTP transport
- ā Error Handling - Comprehensive error responses with user-friendly messages
Development
Running Tests
# Unit + Integration tests
npm test
# E2E tests (requires Box credentials)
npm run test:e2e
# Test coverage
npm run test:coverage
Development Server
# Watch mode with hot reload
npm run dev
# Debug mode with verbose logging
LOG_LEVEL=debug npm start
Project Structure
mcp-box/
āāā src/
ā āāā server.ts # MCP server implementation
ā āāā index.ts # Entry point & transport setup
ā āāā types.ts # TypeScript definitions
ā āāā box/ # Box API client
ā āāā tools/ # Individual MCP tools
āāā tests/ # Test suites
āāā docs/ # Planning documentation
āāā dist/ # Compiled JavaScript
API Reference
Tools
Tool | Description | Key Features |
---|---|---|
box_save_documents | Upload files to Box | Batch upload, auto-folder creation, metadata |
box_read_document | Read file content | Stream content, no local storage, text extraction |
box_manage_folders | Folder operations | Create, move, rename, delete, batch operations |
box_explore_storage | Navigate folders | Tree view, filtering, size info |
box_share_content | Sharing & collaboration | Shared links, collaborator management |
box_analyze_document | Box AI analysis | Summarize, extract, Q&A, classify, translate |
box_search_content | Content search | Natural language, filters, metadata search |
box_retrieve_documents | Download files | Batch download, optional local save |
Resources
URI Template | Description |
---|---|
box://file/{fileId} | Access file by ID |
box://folder/{folderId} | Access folder by ID |
box://search?q={query} | Search results |
box://user/storage | Storage quota info |
box://user/recent | Recent files |
box://folder/root/tree | Complete folder tree |
Prompts
Prompt | Purpose | Arguments |
---|---|---|
share_file | Create shared links | fileId , access , password , expiresAt |
analyze_document | AI document analysis | fileId , analysisType , prompt , focus |
organize_folder | File organization | folderId , strategy , createSubfolders |
bulk_upload | Multiple file upload | targetFolder , createFolders , classification |
collaboration_setup | Team collaboration | itemId , itemType , collaborators , role |
Troubleshooting
Authentication Issues
OAuth 2.0 Troubleshooting
- Browser doesn't open automatically?
# Manual OAuth URL will be displayed in console # Copy and paste into browser
- "Invalid redirect URI" error?
- Check Box app configuration matches your server settings
- Ensure redirect URI is exactly:
http://localhost:3000/auth/callback
- Verify no trailing slashes or extra characters
- "Access denied" during login?
- Check Box app has correct scopes enabled
- Verify user has access to requested files/folders
- Ensure app is not disabled in Box Admin Console
- Tokens not persisting?
- Check file system permissions for token storage
- Verify
.env
file has correct credentials - Try deleting stored tokens and re-authenticating
CCG Troubleshooting
- CCG Setup: Verify enterprise ID and app approval status
- "App not authorized" error?
- Enterprise admin must approve app in Box Admin Console
- Check enterprise ID matches exactly
- Verify app has required scopes enabled
- Token Refresh: Check credential storage permissions
General Auth Issues
- "Invalid client" errors: Double-check Client ID and Client Secret
- "Unauthorized" responses: Verify auth method matches Box app type
- Token refresh failures: Check network connectivity and Box API status
Common Errors
- File Not Found: Use
box_search_content
to find correct file paths - Permission Denied: Verify Box app scopes and user permissions
- Rate Limits: Server handles throttling automatically with exponential backoff
Debugging
# Enable debug logging
LOG_LEVEL=debug node dist/index.js
# Test MCP protocol compliance
npm run test:contract
# Validate Box API connectivity
npm run test:integration
Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature-name
- Follow TDD: Write tests first, then implementation
- Ensure all tests pass:
npm test
- Update documentation as needed
- Submit a pull request
License
MIT License - see file for details.
Support
- Issues: GitHub Issues
- Discussions: GitHub Discussions
- Box API: Box Developer Documentation
- MCP Protocol: MCP Specification
Secure document management meets AI - Keep your files in Box cloud while enabling powerful AI interactions through the Model Context Protocol.