{
  "info": {
    "name": "Nango — mcp.ai",
    "description": "REST API for the Nango MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/nango",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "nango_action_trigger_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/action/trigger/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "action",
            "trigger",
            "post"
          ]
        },
        "description": "Trigger a Nango action to execute a workflow or operation. Use this to run pre-defined actions in your Nango integrations, such as creating issues, sending messages, or fetching data from external API",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"input\": {},\n  \"action_name\": \"\",\n  \"connection_id\": \"\",\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_add_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "connection"
          ]
        },
        "description": "Tool to add a connection with existing credentials to Nango. Use when you want to bulk import existing access tokens into Nango.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": {},\n  \"end_user\": {},\n  \"metadata\": {},\n  \"credentials\": {},\n  \"connection_id\": \"\",\n  \"connection_config\": {},\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_connection_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/connection/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "connection",
            "get"
          ]
        },
        "description": "List all Nango connections without credentials. Use this to discover available connections, check connection status, and find connection IDs. Omitting all filters returns every connection across all i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"limit\": 0,\n  \"search\": \"\",\n  \"end_user_id\": \"\",\n  \"connection_id\": \"\",\n  \"end_user_organization_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_create_connect_session",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/connect/session",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "connect",
            "session"
          ]
        },
        "description": "Tool to create a new connect session with a 30-minute lifespan for enabling connection creation via Connect UI. Use when you need to generate a session token for users to authorize integrations throug",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": {},\n  \"end_user\": {},\n  \"overrides\": {},\n  \"organization\": {},\n  \"allowed_integrations\": \"\",\n  \"integrations_config_defaults\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_create_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "integration"
          ]
        },
        "description": "Tool to create a new integration in Nango. Use when setting up a new provider connection configuration. Creates an integration with specified credentials (OAuth2, App-based, or Hybrid authentication).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"provider\": \"\",\n  \"unique_key\": \"\",\n  \"credentials\": {},\n  \"display_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_delete_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "connection"
          ]
        },
        "description": "Tool to delete a specific Nango connection. Use when you need to remove an existing connection permanently.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"connection_id\": \"\",\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_delete_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "integration"
          ]
        },
        "description": "Tool to delete a specific integration by its unique key. Use when you need to remove an integration configuration from Nango.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uniqueKey\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_edit_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/edit/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "edit",
            "connection"
          ]
        },
        "description": "Tool to edit a connection's tags and metadata. Use when you need to update connection attributes like environment tags, team assignments, or end user information.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": {},\n  \"end_user\": {},\n  \"connection_id\": \"\",\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_get_connection",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/connection",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "connection"
          ]
        },
        "description": "Retrieve a specific connection with its credentials. Automatically checks if the access token has expired and refreshes it if needed. Use this action when you need to access the authentication credent",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"connection_id\": \"\",\n  \"force_refresh\": false,\n  \"refresh_token\": false,\n  \"provider_config_key\": \"\",\n  \"refresh_github_app_jwt_token\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_get_environment_variables",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/environment/variables",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "environment",
            "variables"
          ]
        },
        "description": "Tool to retrieve environment variables from the Nango dashboard. Use when you need to access or list environment variables configured in Nango.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_get_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "integration"
          ]
        },
        "description": "Retrieve detailed configuration for a specific Nango integration by its unique key. Returns integration details including provider, display name, creation/update timestamps, and optionally sensitive d",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include\": \"\",\n  \"unique_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_get_proxy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/proxy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "proxy"
          ]
        },
        "description": "Tool to make a GET request with Nango's Proxy to forward requests to external APIs while managing authentication. Use when you need to make authenticated API calls to external services through Nango's",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"retries\": 0,\n  \"any_path\": \"\",\n  \"retry_on\": \"\",\n  \"decompress\": false,\n  \"query_params\": {},\n  \"connection_id\": \"\",\n  \"custom_headers\": {},\n  \"base_url_override\": \"\",\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_get_sync_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sync/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sync",
            "status"
          ]
        },
        "description": "Tool to get the status of specified sync(s) for a connection or all connections. Use when you need to monitor sync execution state, check completion times, or view sync frequency.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"syncs\": \"\",\n  \"connection_id\": \"\",\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_list_connections",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/connections",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "connections"
          ]
        },
        "description": "Tool to list all connections without credentials. Use when you need to retrieve connection metadata across your account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"tags\": {},\n  \"limit\": 0,\n  \"search\": \"\",\n  \"endUserId\": \"\",\n  \"connectionId\": \"\",\n  \"endUserOrganizationId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_list_integrations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/integrations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "integrations"
          ]
        },
        "description": "Tool to retrieve a list of all configured integrations. Use when you need to display or iterate through integrations in your account.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_providers_get_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/providers/get/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "providers",
            "get",
            "get"
          ]
        },
        "description": "Retrieve detailed configuration for a specific Nango provider by its unique key. Returns provider authentication details (auth_mode, OAuth URLs), proxy configuration, required credentials schema, and ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"provider\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_providers_list_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/providers/list/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "providers",
            "list",
            "get"
          ]
        },
        "description": "Tool to retrieve a list of all available providers. Use when you need to display or iterate through every provider before creating connections. The provider_config_key values returned must be used ver",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_put_proxy",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/put/proxy",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "put",
            "proxy"
          ]
        },
        "description": "Tool to make a PUT request with the Nango Proxy to forward requests to external APIs while managing authentication. Use when you need to update resources via external APIs through Nango's proxy.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": {},\n  \"retries\": \"\",\n  \"any_path\": \"\",\n  \"decompress\": \"\",\n  \"connection_id\": \"\",\n  \"base_url_override\": \"\",\n  \"additional_headers\": {},\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_reconnect_session_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reconnect/session/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reconnect",
            "session",
            "post"
          ]
        },
        "description": "Create a new connect session to reconnect to a specific integration. Use this when a user needs to input new credentials or to manually refresh a token. Only connections created with a connect session",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": {},\n  \"end_user\": {},\n  \"overrides\": {},\n  \"organization\": {},\n  \"connection_id\": \"\",\n  \"integration_id\": \"\",\n  \"integrations_config_defaults\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_scripts_config_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/scripts/config/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "scripts",
            "config",
            "get"
          ]
        },
        "description": "Retrieve all integration functions configuration from Nango. Returns the configuration for all integrations including their sync scripts, action scripts, and event handlers. Use this to discover avail",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_set_connection_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/set/connection/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "set",
            "connection",
            "metadata"
          ]
        },
        "description": "Tool to set custom metadata for one or more Nango connections. Use when you need to attach custom data (tags, labels, context) to connections for filtering, organization, or application-specific purpo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"metadata\": {},\n  \"connection_id\": \"\",\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_sync_trigger_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sync/trigger/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sync",
            "trigger",
            "post"
          ]
        },
        "description": "Tool to trigger sync process(es) manually. Use after establishing a connection and defining syncs. This triggers an additional, one-off execution of the specified sync(s) for a given connection or all",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"syncs\": \"\",\n  \"sync_mode\": \"\",\n  \"connection_id\": \"\",\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_update_connection_metadata",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/connection/metadata",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "connection",
            "metadata"
          ]
        },
        "description": "Tool to edit custom metadata for one or multiple connections. Use when you need to update specific metadata properties without overwriting the entire metadata object.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"metadata\": {},\n  \"connection_id\": \"\",\n  \"provider_config_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "nango_update_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "integration"
          ]
        },
        "description": "Tool to update an existing integration's configuration. Use when you need to modify an integration's display name, unique key, or credentials.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"unique_key\": \"\",\n  \"credentials\": {},\n  \"display_name\": \"\",\n  \"new_unique_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}