Google Drive · connector_googledrive
Access and manage files in Google Drive. Supports file search, retrieval, and metadata operations.
Dropbox · connector_dropbox
Integrate with Dropbox for file storage and sharing capabilities.
SharePoint · connector_sharepoint
Connect to Microsoft SharePoint for enterprise document management.
Gmail · connector_gmail
Read, send, and manage Gmail messages. Supports email search and thread operations.
Outlook Email · connector_outlookemail
Access Microsoft Outlook email services for message management.
Microsoft Teams · connector_microsoftteams
Integrate with Teams for chat, channels, and collaboration features.
Google Calendar · connector_googlecalendar
Access and manage Google Calendar events, schedules, and availability.
Outlook Calendar · connector_outlookcalendar
Integrate with Microsoft Outlook Calendar for event management.
Specify a connector ID when configuring MCP tools in your assistant:
{
"mcpTools": [
{
"serverLabel": "Google Drive Integration",
"type": "mcp",
"connectorId": "connector_googledrive",
"authorization": "oauth_token_here"
}
]
}Most connectors require OAuth authentication. Your application must:
- Implement the OAuth authorization flow for the target service
- Obtain an access token with appropriate scopes
- Provide the token via the
authorizationfield
Control which tools are accessible using the allowedTools parameter:
{
"connectorId": "connector_googledrive",
"allowedTools": ["search_files", "get_file", "list_folders"]
}Or use filter criteria:
{
"connectorId": "connector_gmail",
"allowedTools": {
"readOnly": true
}
}