inspect_database_server
Retrieve structural metadata, including catalogs, schemas, and tables, from a specified database server using JDBCX MCP Server. Supports customizable query timeout for efficient data inspection.
Instructions
Get structural metadata for a specific database server, including its catalogs, schemas, and tables. May take minutes for large servers.
Args:
database_server (str): The name of the database server to inspect
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 structural metadata of the specified database server, including its catalogs, schemas, and tables
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database_server | Yes | ||
query_timeout_seconds | No |
Input Schema (JSON Schema)
{
"properties": {
"database_server": {
"title": "Database Server",
"type": "string"
},
"query_timeout_seconds": {
"default": 10,
"title": "Query Timeout Seconds",
"type": "integer"
}
},
"required": [
"database_server"
],
"title": "inspect_database_serverArguments",
"type": "object"
}