Files
genai-toolbox/docs/en/resources/tools/postgres/postgres-list-installed-extensions.md
Wenxin Du 98f7ee2e36 docs: fix docs lint (#1677)
fix docs lint for release
2025-10-09 19:25:05 -04:00

1.5 KiB

title, type, weight, description, aliases
title type weight description aliases
postgres-list-installed-extensions docs 1 The "postgres-list-installed-extensions" tool retrieves all PostgreSQL extensions installed on a Postgres database.
/resources/tools/postgres-list-installed-extensions

About

The postgres-list-installed-extensions tool retrieves all PostgreSQL extensions installed on a Postgres database. It's compatible with any of the following sources:

postgres-list-installed-extensions lists all installed PostgreSQL extensions (extension name, version, schema, owner, description) as JSON. The does not support any input parameter.

Example

tools:
  list_installed_extensions:
    kind: postgres-list-installed-extensions
    source: postgres-source
    description: List all installed PostgreSQL extensions with their name, version, schema, owner, and description.

Reference

field type required description
kind string true Must be "postgres-list-active-queries".
source string true Name of the source the SQL should execute on.
description string true Description of the tool that is passed to the LLM.