other
Box MCP Gateway for AI Agents
Expose Box tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
10 functions 6 read 4 write Manual OAuth token auth
Box MCP Gateway
Expose Box to MCP clients with `kosmokrator mcp:serve --integration=box`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=box --write=deny --json {
"mcpServers": {
"kosmokrator-box": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=box",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=box --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__box__box_list_files | box.box_list_files | Read read |
integration__box__box_get_file | box.box_get_file | Read read |
integration__box__box_upload_file | box.box_upload_file | Write write |
integration__box__box_download_file | box.box_download_file | Read read |
integration__box__box_delete_file | box.box_delete_file | Write write |
integration__box__box_create_folder | box.box_create_folder | Write write |
integration__box__box_get_folder | box.box_get_folder | Read read |
integration__box__box_share_file | box.box_share_file | Write write |
integration__box__box_search | box.box_search | Read read |
integration__box__box_get_current_user | box.box_get_current_user | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.