KosmoKrator

storage

Dropbox MCP Gateway for AI Agents

Expose Dropbox tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

17 functions 10 read 7 write Manual OAuth token auth

Dropbox MCP Gateway

Expose Dropbox to MCP clients with `kosmokrator mcp:serve --integration=dropbox`.

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=dropbox --write=deny --json
{
  "mcpServers": {
    "kosmokrator-dropbox": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=dropbox",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=dropbox --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP Tool Names (17 tools)
MCP toolSource functionType
integration__dropbox__dropbox_list_folder dropbox.dropbox_list_folder Read read
integration__dropbox__dropbox_list_folder_continue dropbox.dropbox_list_folder_continue Read read
integration__dropbox__dropbox_upload_file dropbox.dropbox_upload_file Write write
integration__dropbox__dropbox_download_file dropbox.dropbox_download_file Read read
integration__dropbox__dropbox_create_folder dropbox.dropbox_create_folder Write write
integration__dropbox__dropbox_delete dropbox.dropbox_delete Write write
integration__dropbox__dropbox_move dropbox.dropbox_move Write write
integration__dropbox__dropbox_copy dropbox.dropbox_copy Write write
integration__dropbox__dropbox_search_files dropbox.dropbox_search_files Read read
integration__dropbox__dropbox_search_continue dropbox.dropbox_search_continue Read read
integration__dropbox__dropbox_create_shared_link dropbox.dropbox_create_shared_link Write write
integration__dropbox__dropbox_list_shared_links dropbox.dropbox_list_shared_links Read read
integration__dropbox__dropbox_get_temporary_link dropbox.dropbox_get_temporary_link Read read
integration__dropbox__dropbox_list_revisions dropbox.dropbox_list_revisions Read read
integration__dropbox__dropbox_restore dropbox.dropbox_restore Write write
integration__dropbox__dropbox_get_metadata dropbox.dropbox_get_metadata Read read
integration__dropbox__dropbox_get_current_account dropbox.dropbox_get_current_account 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.