Files
genai-toolbox/docs/en/resources/tools/looker/looker-get-connection-databases.md
Dr. Strangelove 285aa46b88 feat(looker/tools): Enhance dashboard creation with dashboard filters (#2133)
## Description

Enhance dashboard creation with dashboard level filters. Also improve
tool descriptions.

## PR Checklist

> Thank you for opening a Pull Request! Before submitting your PR, there
are a
> few things you can do to make sure it goes smoothly:

- [X] Make sure you reviewed

[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md)
- [x] Make sure to open an issue as a

[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose)
  before writing your code! That way we can discuss the change, evaluate
  designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)
- [x] Make sure to add `!` if this involve a breaking change
2025-12-10 13:30:20 -08:00

1.7 KiB

title, type, weight, description, aliases
title type weight description aliases
looker-get-connection-databases docs 1 A "looker-get-connection-databases" tool returns all the databases in a connection.
/resources/tools/looker-get-connection-databases

About

A looker-get-connection-databases tool returns all the databases in a connection.

It's compatible with the following sources:

looker-get-connection-databases accepts a conn parameter.

Example

tools:
    get_connection_databases:
        kind: looker-get-connection-databases
        source: looker-source
        description: |
          This tool retrieves a list of databases available through a specified Looker connection.
          This is only applicable for connections that support multiple databases.
          Use `get_connections` to check if a connection supports multiple databases.

          Parameters:
          - connection_name (required): The name of the database connection, obtained from `get_connections`.

          Output:
          A JSON array of strings, where each string is the name of an available database.
          If the connection does not support multiple databases, an empty list or an error will be returned.

Reference

field type required description
kind string true Must be "looker-get-connection-databases".
source string true Name of the source Looker instance.
description string true Description of the tool that is passed to the LLM.