create_gdrive_source
Generate a Google Drive source connector for the Unstructured API MCP Server by specifying a unique name, drive ID, and optional recursive access to subfolders.
Instructions
Create an gdrive source connector.
Args:
name: A unique name for this connector
remote_url: The gdrive URI to the bucket or folder (e.g., gdrive://my-bucket/)
recursive: Whether to access subfolders within the bucket
Returns:
String containing the created source connector information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
drive_id | Yes | ||
extensions | No | ||
name | Yes | ||
recursive | No |
Input Schema (JSON Schema)
{
"properties": {
"drive_id": {
"title": "Drive Id",
"type": "string"
},
"extensions": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Extensions"
},
"name": {
"title": "Name",
"type": "string"
},
"recursive": {
"default": false,
"title": "Recursive",
"type": "boolean"
}
},
"required": [
"name",
"drive_id"
],
"title": "create_gdrive_sourceArguments",
"type": "object"
}