SourceSync AI MCP
Skills
ingestFile
Ingests a file into the namespace. Supports various file formats with automatic parsing.
ingestText
Ingests raw text content into the namespace. Supports optional metadata and chunk configuration.
ingestUrls
Ingests content from a list of URLs. Supports scraping options and metadata.
getNamespace
Retrieves a specific namespace by its ID.
hybridSearch
Performs a combined keyword and semantic search, balancing between exact matches and semantic similarity. Requires hybridConfig with weights for both search types.
getConnection
Retrieves details for a specific connection by its ID.
ingestSitemap
Ingests content from a website using its sitemap.xml. Supports path filtering and link limits.
ingestWebsite
Crawls and ingests content from a website recursively. Supports depth control and path filtering.
fetchDocuments
Fetches documents from the namespace based on filter criteria. Supports pagination and including specific document properties.
listNamespaces
Lists all namespaces available for the current API key and optional tenant ID.
semanticSearch
Performs semantic search across the namespace to find relevant content based on meaning rather than exact keyword matches.
validateApiKey
Validates the API key by attempting to list namespaces. Returns the list of namespaces if successful.
createNamespace
Creates a new namespace with the provided configuration. Requires a name, file storage configuration, vector storage configuration, and embedding model configuration.
deleteDocuments
Permanently deletes documents that match the specified filter criteria.
deleteNamespace
Permanently deletes a namespace by its ID.
fetchUrlContent
Fetches the content of a URL. Particularly useful for fetching parsed text file URLs.
ingestConnector
Ingests all documents in the connector that are in backlog or failed status. No need to provide the document ids or file ids for the ingestion. Ids are already in the backlog when picked thorough the picker. If not, the user has to go through the authorization flow again, where they will be asked to pick the documents again.
listConnections
Lists all connections for the current namespace, optionally filtered by connector type.
resyncDocuments
Reprocesses documents that match the specified filter criteria. Useful for updating after schema changes.
updateDocuments
Updates metadata for documents that match the specified filter criteria.
updateNamespace
Updates an existing namespace with the provided configuration parameters.
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.
revokeConnection
Revokes access for a specific connection, removing the integration with the external service.
updateConnection
Updates a 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. This is useful if you want to update the connection to a different source or if you want to update the clientRedirectUrl or if you want to pick a different or new set of documents.
getIngestJobRunStatus
Checks the status of a previously submitted ingestion job.