Files
wehub-resource-sync e04ed9c211
CF: Deploy Dev Docs / deploy (push) Has been cancelled
Sync Labels / build (push) Has been cancelled
tests / unit tests (macos-latest) (push) Has been cancelled
tests / unit tests (windows-latest) (push) Has been cancelled
tests / unit tests (ubuntu-latest) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:32:45 +08:00

2.1 KiB

title, type, weight, description
title type weight description
postgres-list-pg-settings docs 1 The "postgres-list-pg-settings" tool lists PostgreSQL run-time configuration settings.

About

The postgres-list-pg-settings tool lists the configuration parameters for the postgres server, their current values, and related information.

postgres-list-pg-settings lists detailed information as JSON for each setting. The tool takes the following input parameters:

  • setting_name (optional): A text to filter results by setting name. Default: ""
  • limit (optional): The maximum number of rows to return. Default: 50.

Compatible Sources

{{< compatible-sources others="integrations/alloydb, integrations/cloud-sql-pg">}}

Example

kind: tool
name: list_indexes
type: postgres-list-pg-settings
source: postgres-source
description: |
  Lists configuration parameters for the postgres server ordered lexicographically, 
  with a default limit of 50 rows. It returns the parameter name, its current setting,
  unit of measurement, a short description, the source of the current setting (e.g.,
  default, configuration file, session), and whether a restart is required when the
  parameter value is changed."

The response is a json array with the following elements:

{
 "name": "Setting name",
 "current_value": "Current value of the setting",
 "unit": "Unit of the setting",
 "short_desc": "Short description of the setting",
 "source": "Source of the current value (e.g., default, configuration file, session)",
 "requires_restart": "Indicates if a server restart is required to apply a change ('Yes', 'No', or 'No (Reload sufficient)')"
}

Reference

field type required description
type string true Must be "postgres-list-pg-settings".
source string true Name of the source the SQL should execute on.
description string false Description of the tool that is passed to the agent.