hana_show_config
Display the current configuration of your HANA database to review settings and ensure proper setup.
Instructions
Show the HANA database configuration
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/config-tools.js:14-21 (handler)The main handler function for the 'hana_show_config' tool. It logs the tool usage, retrieves the display configuration, formats it, and returns a formatted response.static async showConfig(args) { logger.tool('hana_show_config'); const displayConfig = config.getDisplayConfig(); const formattedConfig = Formatters.formatConfig(displayConfig); return Formatters.createResponse(formattedConfig); }
- The tool definition object for 'hana_show_config', including its name, description, and empty input schema (no parameters required).{ name: "hana_show_config", description: "Show the HANA database configuration", inputSchema: { type: "object", properties: {}, required: [] } },
- src/tools/index.js:14-24 (registration)The TOOL_IMPLEMENTATIONS object maps the tool name 'hana_show_config' to its handler function ConfigTools.showConfig for execution via ToolRegistry.const TOOL_IMPLEMENTATIONS = { hana_show_config: ConfigTools.showConfig, hana_test_connection: ConfigTools.testConnection, hana_show_env_vars: ConfigTools.showEnvVars, hana_list_schemas: SchemaTools.listSchemas, hana_list_tables: TableTools.listTables, hana_describe_table: TableTools.describeTable, hana_list_indexes: IndexTools.listIndexes, hana_describe_index: IndexTools.describeIndex, hana_execute_query: QueryTools.executeQuery };