Datadog
add_connection
Get a secure one-time link to register a new database connection with ThinAir Data (postgres, mysql, or mssql). This tool does NOT take a connection string as input — you'll open the returned link and paste the connection string into a secure web form; it is never sent through chat. The response includes `connection_string_format` and `auth_note` for the chosen dialect — surface both to the user verbatim. IMPORTANT for mssql: Azure SQL uses Microsoft Entra, so the connection string is HOST/DATABASE only (no credentials) and the tenant/client/secret go in the form's separate fields — never construct or suggest an `mssql://CLIENT_ID:CLIENT_SECRET@host` string (client secrets break URL parsing).
Remote (network-hosted)
Other tools also called add_connection?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"maxLength": 256,
"minLength": 1,
"description": "A short name for this connection, e.g. 'prod-postgres' or 'analytics-mysql'."
},
"dialect": {
"enum": [
"postgres",
"mysql",
"mssql"
],
"type": "string",
"description": "Database engine for the new connection."
}
}
}