Skip to main content
AgentDrive ships an MCP server with 14 tools. Add one config block to your MCP client and your agents get persistent file storage.

Claude Desktop

Add to your claude_desktop_config.json:
{
  "mcpServers": {
    "agentdrive": {
      "command": "npx",
      "args": ["@agentdrive/mcp-server"],
      "env": {
        "AGENTDRIVE_API_KEY": "agd_your_key"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings:
{
  "mcpServers": {
    "agentdrive": {
      "command": "npx",
      "args": ["@agentdrive/mcp-server"],
      "env": {
        "AGENTDRIVE_API_KEY": "agd_your_key"
      }
    }
  }
}

Available tools

ToolDescription
create_driveCreate a new drive
list_drivesList all drives
upload_fileUpload a file to a drive
read_fileRead/download a file by ID
list_filesList files in a drive
delete_fileDelete a file by ID
get_file_infoGet metadata about a file
search_filesSearch for files by name
move_fileMove a file to a new path or drive
copy_fileCopy a file to a new path or drive
create_folderCreate a folder in a drive
create_share_linkGenerate a temporary download URL
tag_fileAdd or replace tags on a file
get_usage_infoGet account usage stats

Environment variables

VariableRequiredDescription
AGENTDRIVE_API_KEYYesYour API key (starts with agd_)
AGENTDRIVE_API_URLNoAPI base URL (defaults to https://api.getagentdrive.com)