Skip to main content
Glama
scmdr

SourceSync.ai MCP Server

by scmdr

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
validateApiKeyA

Validates the API key by attempting to list namespaces. Returns the list of namespaces if successful.

createNamespaceC

Creates a new namespace with the provided configuration. Requires a name, file storage configuration, vector storage configuration, and embedding model configuration.

listNamespacesB

Lists all namespaces available for the current API key and optional tenant ID.

getNamespaceC

Retrieves a specific namespace by its ID.

updateNamespaceC

Updates an existing namespace with the provided configuration parameters.

deleteNamespaceC

Permanently deletes a namespace by its ID.

ingestTextC

Ingests raw text content into the namespace. Supports optional metadata and chunk configuration.

ingestFileC

Ingests a file into the namespace. Supports various file formats with automatic parsing.

ingestUrlsC

Ingests content from a list of URLs. Supports scraping options and metadata.

ingestSitemapC

Ingests content from a website using its sitemap.xml. Supports path filtering and link limits.

ingestWebsiteC

Crawls and ingests content from a website recursively. Supports depth control and path filtering.

ingestConnectorC

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.

getIngestJobRunStatusC

Checks the status of a previously submitted ingestion job.

fetchDocumentsC

Fetches documents from the namespace based on filter criteria. Supports pagination and including specific document properties.

updateDocumentsC

Updates metadata for documents that match the specified filter criteria.

deleteDocumentsC

Permanently deletes documents that match the specified filter criteria.

resyncDocumentsB

Reprocesses documents that match the specified filter criteria. Useful for updating after schema changes.

semanticSearchC

Performs semantic search across the namespace to find relevant content based on meaning rather than exact keyword matches.

hybridSearchC

Performs a combined keyword and semantic search, balancing between exact matches and semantic similarity. Requires hybridConfig with weights for both search types.

createConnectionB

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.

listConnectionsB

Lists all connections for the current namespace, optionally filtered by connector type.

getConnectionC

Retrieves details for a specific connection by its ID.

updateConnectionC

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.

revokeConnectionC

Revokes access for a specific connection, removing the integration with the external service.

fetchUrlContentC

Fetches the content of a URL. Particularly useful for fetching parsed text file URLs.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.1/5.0

Scored across 25 tools

Disambiguation4/5

Most tools have distinct purposes, but there is some overlap between ingest tools (e.g., ingestFile, ingestText, ingestUrls, ingestWebsite, ingestSitemap) that could cause confusion about which to use for specific content types. However, descriptions clarify their specific use cases, and other tools like search and connection management are clearly differentiated.

Naming Consistency5/5

Tool names follow a consistent verb_noun pattern throughout, such as createConnection, deleteDocuments, fetchUrlContent, and hybridSearch. This predictability makes it easy for agents to understand and select tools based on their actions and targets.

Tool Count3/5

With 25 tools, the count is on the higher side for a document ingestion and search server, which may feel heavy and potentially overwhelming. While it covers many operations, it borders on being too many, as some tools could be consolidated or simplified without losing functionality.

Completeness5/5

The tool set provides comprehensive coverage for the domain, including CRUD operations for namespaces and connections, various ingestion methods for different content types, search capabilities (semantic and hybrid), document management (fetch, update, delete, resync), and API validation. No obvious gaps are present, enabling full lifecycle management.

Maintenance

ActivityInactive
ResponsivenessNo issues