list_database_servers
Retrieve a JSON list of all database servers configured in the JDBCX MCP Server, including descriptions, with optional query timeout adjustment.
Instructions
List all available database servers configured in the JDBCX server.
Args:
query_timeout_seconds (int, optional): Maximum time to wait for the request in seconds.
Defaults to DEFAULT_QUERY_TIMEOUT_SECONDS.
Returns:
str: JSON string containing the list of database servers along with their corresponding descriptions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query_timeout_seconds | No |
Input Schema (JSON Schema)
{
"properties": {
"query_timeout_seconds": {
"default": 10,
"title": "Query Timeout Seconds",
"type": "integer"
}
},
"title": "list_database_serversArguments",
"type": "object"
}