ai.agenttrust/mcp

agenttrust_drive_upload

Upload a file to your Agent Drive. Provide the file content as a base64-encoded string. Files are stored per-agent and subject to your plan's storage quota.

Remote info-ylms/agenttrust

Remote (network-hosted)

Other tools also called agenttrust_drive_upload? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Filename (e.g. report.pdf)"
    },
    "path": {
      "type": "string",
      "description": "Optional folder path (e.g. reports/q1). Defaults to root."
    },
    "content": {
      "type": "string",
      "description": "Base64-encoded file content"
    },
    "mime_type": {
      "type": "string",
      "description": "MIME type (default: application/octet-stream)"
    }
  }
}