Skip to main content
Glama

get_connection

Retrieve a saved integration connection for an environment, connection ID, and provider config while redacting credential-like fields to keep sensitive data secure.

Instructions

Get a Nango connection. Credential-like response fields are redacted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
environmentYes
connectionIdYes
providerConfigKeyYes
includeCredentialsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed8 schema fields changedv2.0.0
    • addedInput schema / additionalProperties
      Added value: +false
    • addedInput schema / properties / connectionId
      Added value: +{
      +  "title": "Connectionid",
      +  "type": "string"
      +}
    • removedInput schema / properties / connection_id
      Removed value: -{
      -  "title": "Connection Id",
      -  "type": "string"
      -}
    • addedInput schema / properties / includeCredentials
      Added value: +{
      +  "default": false,
      +  "title": "Includecredentials",
      +  "type": "boolean"
      +}
    • removedInput schema / properties / include_credentials
      Removed value: -{
      -  "default": false,
      -  "title": "Include Credentials",
      -  "type": "boolean"
      -}
    • addedInput schema / properties / providerConfigKey
      Added value: +{
      +  "title": "Providerconfigkey",
      +  "type": "string"
      +}
    • removedInput schema / properties / provider_config_key
      Removed value: -{
      -  "title": "Provider Config Key",
      -  "type": "string"
      -}
    • changedInput schema / required
      Previous value: -[
      -  "environment",
      -  "connection_id",
      -  "provider_config_key"
      -]New value: +[
      +  "environment",
      +  "connectionId",
      +  "providerConfigKey"
      +]
  2. First observedv0.1.0

TDQS

B3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must carry the behavioral burden. It discloses one useful trait: credential-like response fields are redacted. However, it does not explain how includeCredentials affects that behavior, what response shape is returned, or whether there are side effects, leaving significant behavioral context unstated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two short sentences with no filler, and the most important caveat (redaction) is placed prominently. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

There is no output schema and no annotations, so the description needs to be more informative to be complete. It leaves key call semantics undefined: parameter meanings, default vs. includeCredentials true behavior, response format, and potential errors. The redaction note is useful but not sufficient for confident invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description adds no parameter-level meaning. It does not explain environment, connectionId, providerConfigKey, or the implications of includeCredentials. The parameter names are somewhat self-explanatory, but the description fails to compensate for the missing schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names a specific verb and resource: 'Get a Nango connection.' It clearly identifies a single-connection fetch operation. It does not explicitly contrast with sibling tools like list_connections or get_connection_context, so it falls short of full differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance about when to invoke this tool versus alternatives such as list_connections or get_connection_context. It provides neither prerequisites, exclusions, nor routing conditions. Any inference about usage must come from the tool name and sibling names rather than the description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.