getConnection
Retrieve specific connection details by ID using the SourceSync.ai MCP Server. Facilitates AI models in accessing and managing knowledge base connections efficiently.
Instructions
Retrieves details for a specific connection by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | ||
namespaceId | No | ||
tenantId | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"connectionId": {
"type": "string"
},
"namespaceId": {
"type": "string"
},
"tenantId": {
"type": "string"
}
},
"required": [
"connectionId"
],
"type": "object"
}