mcp-server-box

An MCP server capable of interacting with the Box API

GitHub Stars

49

User Rating

Not Rated

Favorites

0

Views

30

Forks

19

Issues

8

Installation
Difficulty
Advanced
Estimated Time
20-45 minutes

Installation

1Clone the repository:
sh
    git clone https://github.com/box-community/mcp-server-box.git
    cd mcp-server-box
    
2Install uv if not installed yet:
2.1 MacOS+Linux
sh
    curl -LsSf https://astral.sh/uv/install.sh | sh
    
2.2 Windows
powershell
    powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
    
3Create and set up our project:
3.1 MacOS+Linux ```sh # Create virtual environment and activate it uv venv source .venv/bin/activate

Additional Resources