Skip to main content
Glama

delete_integration

Delete a Nango integration from a specified environment by its integration ID to clean up unused configurations and keep your setup organized.

Instructions

Delete a Nango integration.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
environmentYes
integrationIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed4 schema fields changedv2.0.0
    • addedInput schema / additionalProperties
      Added value: +false
    • 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. Changed1 schema field changedv1.0.0
    • removedInput schema / properties / confirmation
      Removed value: -{
      -  "default": "",
      -  "title": "Confirmation",
      -  "type": "string"
      -}
  3. First observedv0.1.0

TDQS

C2.6/5.0
Behavior1/5

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

With no annotations, the description carries the full burden of behavioral disclosure, but 'Delete a Nango integration' does not mention irreversibility, side effects on existing connections, permissions required, or post-deletion state. It adds no behavioral information beyond what the tool name already conveys.

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 a single clear sentence with no filler or redundancy. It is immediately readable and every word contributes to stating the core purpose, making it maximally concise.

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

Completeness1/5

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

For a destructive tool with two required parameters, no annotations, and no output schema, the description lacks all contextual detail: no side effects, no parameter semantics, no prerequisites, and no return value expectations. An agent cannot confidently construct a correct and safe invocation.

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?

Schema description coverage is 0%, and the description does not define 'environment' or 'integrationId' beyond their names. No formats, examples, constraints, or relationships between the parameters are given, leaving the agent to guess valid inputs.

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

Purpose5/5

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

The description clearly states the verb 'Delete' and the resource 'a Nango integration', making the core purpose unambiguous. It is naturally differentiated from sibling tools like create_integration, update_integration, get_integration, and list_integrations by the destructive verb.

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?

No guidance is provided on when to use this tool versus alternatives. There is no indication of prerequisites, such as whether the integration must exist first, or how this relates to delete_connection, which handles a different resource. Usage context is only implied by the verb.

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