Skip to main content
Glama

get_integration

Retrieve a Nango integration's configuration with credentials redacted by default. Optionally includeCredentials to obtain full details, enabling verification or management of API integrations.

Instructions

Get one Nango integration. Credential-like response fields are redacted.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
environmentYes
integrationIdYes
includeCredentialsNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed6 schema fields changedv2.0.0
    • addedInput schema / additionalProperties
      Added value: +false
    • 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 / integrationId
      Added value: +{
      +  "title": "Integrationid",
      +  "type": "string"
      +}
    • removedInput schema / properties / integration_id
      Removed value: -{
      -  "title": "Integration Id",
      -  "type": "string"
      -}
    • changedInput schema / required
      Previous value: -[
      -  "environment",
      -  "integration_id"
      -]New value: +[
      +  "environment",
      +  "integrationId"
      +]
  2. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

The redaction statement is a useful behavioral disclosure, especially since no annotations are present. However, it does not clarify how the includeCredentials parameter interacts with this redaction, leaving ambiguity about whether credentials are ever returned. No annotation contradiction exists.

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?

Two short sentences, front-loaded with the core purpose and followed by a key security-relevant caveat. There is no filler or redundancy.

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?

The tool has three parameters and no output schema or annotations, yet the description leaves important context unexplained: what values environment accepts, what integrationId refers to precisely, and what includeCredentials actually changes. The redaction note is helpful but not enough for complete invocation confidence.

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

Parameters1/5

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

With 0% schema description coverage, the description needed to explain the parameters but does not mention environment, integrationId, or includeCredentials semantics. The redaction note relates to output behavior, not to what the parameters mean or how to supply them.

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 clearly states the action ('Get one Nango integration') and the resource, so an agent knows this is a single-item retrieval rather than a listing. It does not explicitly contrast itself with siblings like list_integrations, but the singular 'one' provides enough separation.

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

Usage Guidelines3/5

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

The phrasing implies the tool is for fetching a single integration by ID, which gives some usage context. However, it does not provide explicit when-to-use guidance, exclusions, or references to alternatives such as list_integrations.

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