A containerized version of "Box MCP Server"
Repository: hmk/box-mcp-server
A Box model context protocol server to search, read and access files
The containers are built automatically and are available on the GitHub Container Registry.
- Pull the Docker image:
docker pull ghcr.io/metorial/mcp-container--hmk--box-mcp-server--box-mcp-server
- Run the container:
docker run -i --rm \
-e BOX_JWT_BASE64=box-jwt-base-64 -e BOX_USER_ID=box-user-id \
ghcr.io/metorial/mcp-container--hmk--box-mcp-server--box-mcp-server "node dist/index.js"
--rm
removes the container after it exits, so you don't have to clean up manually.-i
allows you to interact with the container in your terminal.
The container supports the following configuration options:
BOX_JWT_BASE64
BOX_USER_ID
{
"mcpServers": {
"box-mcp-server": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--hmk--box-mcp-server--box-mcp-server",
"node dist/index.js"
],
"env": {
"BOX_JWT_BASE64": "box-jwt-base-64",
"BOX_USER_ID": "box-user-id"
}
}
}
}
Please refer to the license provided in the project repository for more information.
Contributions are welcome! If you notice any issues or have suggestions for improvements, please open an issue or submit a pull request.
Containerized with ❤️ by Metorial