SourceSync.ai MCP Server

createConnection

Creates a new connection to a specific source. The connector parameter should be a valid SourceSync connector enum value. The clientRedirectUrl parameter is optional and can be used to specify a custom redirect URL for the connection. This will give you a authorization url which you can redirect the user to. The user will then be asked to pick the documents they want to ingest.

Input Schema

NameRequiredDescriptionDefault
clientRedirectUrlNo
connectorYes
nameYes
namespaceIdNo
tenantIdNo

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "clientRedirectUrl": { "type": "string" }, "connector": { "enum": [ "NOTION", "GOOGLE_DRIVE", "DROPBOX", "ONEDRIVE", "BOX", "SHAREPOINT" ], "type": "string" }, "name": { "type": "string" }, "namespaceId": { "type": "string" }, "tenantId": { "type": "string" } }, "required": [ "name", "connector" ], "type": "object" }