trackmcp
Back to directory
aliyun

alibabacloud-hologres-mcp-server

View on GitHub
23 stars PythonServers & Infrastructure Updated Sep 2, 2025

Documentation

English | 中文

Hologres MCP Server

Hologres MCP Server serves as a universal interface between AI Agents and Hologres databases. It enables seamless communication between AI Agents and Hologres, helping AI Agents retrieve Hologres database metadata and execute SQL operations.

Configuration

Mode 1: Using Local File

Download

Download from Github

bash
git clone https://github.com/aliyun/alibabacloud-hologres-mcp-server.git

MCP Integration

Add the following configuration to the MCP client configuration file:

json
{
    "mcpServers": {
        "hologres-mcp-server": {
            "command": "uv",
            "args": [
                "--directory",
                "/path/to/alibabacloud-hologres-mcp-server",
                "run",
                "hologres-mcp-server"
            ],
            "env": {
                "HOLOGRES_HOST": "host",
                "HOLOGRES_PORT": "port",
                "HOLOGRES_USER": "access_id",
                "HOLOGRES_PASSWORD": "access_key",
                "HOLOGRES_DATABASE": "database"
            }
        }
    }
}

Mode 2: Using PIP Mode

Installation

Install MCP Server using the following package:

bash
pip install hologres-mcp-server

MCP Integration

Add the following configuration to the MCP client configuration file:

Use uv mode

json
{
    "mcpServers": {
        "hologres-mcp-server": {
            "command": "uv",
            "args": [
                "run",
                "--with",
                "hologres-mcp-server",
                "hologres-mcp-server"
            ],
            "env": {
                "HOLOGRES_HOST": "host",
                "HOLOGRES_PORT": "port",
                "HOLOGRES_USER": "access_id",
                "HOLOGRES_PASSWORD": "access_key",
                "HOLOGRES_DATABASE": "database"
            }
        }
    }
}

Use uvx mode

json
{
    "mcpServers": {
        "hologres-mcp-server": {
            "command": "uvx",
            "args": [
                "hologres-mcp-server"
            ],
            "env": {
                "HOLOGRES_HOST": "host",
                "HOLOGRES_PORT": "port",
                "HOLOGRES_USER": "access_id",
                "HOLOGRES_PASSWORD": "access_key",
                "HOLOGRES_DATABASE": "database"
            }
        }
    }
}

Mode 3: Using Streamable HTTP Transport

The server supports Streamable HTTP transport for remote deployment scenarios where STDIO is not available.

Start the server

Before starting the server, set the Hologres connection environment variables:

bash
export HOLOGRES_HOST="your-hologres-instance.hologres.aliyuncs.com"
export HOLOGRES_PORT="80"
export HOLOGRES_USER="your_access_id"
export HOLOGRES_PASSWORD="your_access_key"
export HOLOGRES_DATABASE="your_database"

Then start the server:

bash
# Using pip-installed package
hologres-mcp-server --transport streamable-http --host 0.0.0.0 --port 8000

# Or using uvx
uvx hologres-mcp-server --transport streamable-http --host 0.0.0.0 --port 8000

The MCP endpoint will be available at `http://:/mcp`.

CLI Options

OptionDefaultDescription
`--transport``stdio`Transport type: `stdio`, `streamable-http`, or `sse`
`--host``127.0.0.1`Host to bind to (HTTP transports only)
`--port``8000`Port to listen on (HTTP transports only)

MCP Integration

Add the following configuration to the MCP client configuration file:

json
{
    "mcpServers": {
        "hologres-mcp-server": {
            "url": "http://:/mcp"
        }
    }
}

Using with Claude Code

bash
# Add to Claude Code
claude mcp add hologres-mcp-server \
  -e HOLOGRES_HOST= \
  -e HOLOGRES_PORT= \
  -e HOLOGRES_USER= \
  -e HOLOGRES_PASSWORD= \
  -e HOLOGRES_DATABASE= \
  -- uvx hologres-mcp-server

Components

Tools

  • `execute_hg_select_sql`: Execute a SELECT SQL query in Hologres database
  • `execute_hg_select_sql_with_serverless`: Execute a SELECT SQL query in Hologres database with serverless computing
  • `execute_hg_dml_sql`: Execute a DML (INSERT, UPDATE, DELETE) SQL query in Hologres database
  • `execute_hg_ddl_sql`: Execute a DDL (CREATE, ALTER, DROP, COMMENT ON) SQL query in Hologres database
  • `gather_hg_table_statistics`: Collect table statistics in Hologres database
    • Parameters: `schema_name` (string), `table` (string)
  • `get_hg_query_plan`: Get query plan in Hologres database
  • `get_hg_execution_plan`: Get execution plan in Hologres database
  • `call_hg_procedure`: Invoke a procedure in Hologres database
  • `create_hg_maxcompute_foreign_table`: Create MaxCompute foreign tables in Hologres database.

Since some Agents do not support resources and resource templates, the following tools are provided to obtain the metadata of schemas, tables, views, and external tables.

  • `list_hg_schemas`: Lists all schemas in the current Hologres database, excluding system schemas.
  • `list_hg_tables_in_a_schema`: Lists all tables in a specific schema, including their types (table, view, external table, partitioned table).
    • Parameters: `schema_name` (string)
  • `show_hg_table_ddl`: Show the DDL script of a table, view, or external table in the Hologres database.
    • Parameters: `schema_name` (string), `table` (string)
  • `query_and_plotly_chart`: Execute a SELECT SQL query and generate a chart (bar, line, scatter, pie, histogram, area). Returns query results and a base64-encoded PNG image.
    • Parameters: `query` (string), `chart_type` (string, default "bar"), `x_column` (string), `y_column` (string), `title` (string)
  • `analyze_hg_query_by_id`: Analyze a specific query's performance profile by its query_id from hg_query_log. Returns detailed metrics including duration, memory, CPU time, read/write stats.
    • Parameters: `query_id` (string)
  • `get_hg_slow_queries`: Get slow queries from hg_query_log ordered by duration.
    • Parameters: `min_duration_ms` (int, default 1000), `limit` (int, default 20)
  • `list_hg_dynamic_tables`: List all Dynamic Tables with their status, freshness settings, and last refresh info.
    • Parameters: `schema_name` (string, optional)
  • `get_hg_dynamic_table_refresh_history`: Get refresh history for a specific Dynamic Table, including duration, status, and latency.
    • Parameters: `schema_name` (string), `table_name` (string), `limit` (int, default 10)
  • `list_hg_recyclebin`: List all tables in the Hologres recycle bin (dropped tables that can be restored).
  • `restore_hg_table_from_recyclebin`: Restore a dropped table from the Hologres recycle bin.
    • Parameters: `table_name` (string), `schema_name` (string, default "public")
  • `list_hg_warehouses`: List all computing groups (warehouses) with their CPU, memory, cluster count, and status.
  • `switch_hg_warehouse`: Switch the current session's computing resource to a specified warehouse.
    • Parameters: `warehouse_name` (string)
  • `get_hg_table_storage_size`: Get storage size details of a table, including total, data, index, and metadata breakdown.
    • Parameters: `schema_name` (string), `table` (string)
  • `cancel_hg_query`: Cancel or terminate a running query by its process ID.
    • Parameters: `pid` (int), `terminate` (bool, default false)
  • `list_hg_active_queries`: List currently active queries and connections from pg_stat_activity.
    • Parameters: `state` (string: "active", "idle", or "all", default "active")
  • `list_hg_query_queues`: List all Query Queues and their classifiers (concurrency limits, routing rules). Requires V3.0+.
  • `get_hg_table_properties`: Get table properties including distribution_key, clustering_key, segment_key, bitmap_columns, binlog settings, etc.
    • Parameters: `schema_name` (string), `table` (string)
  • `get_hg_table_shard_info`: Get table's Table Group and shard count info for diagnosing data skew.
    • Parameters: `schema_name` (string), `table` (string)
  • `list_hg_external_databases`: List all External Databases and Foreign Servers for Lakehouse acceleration. Requires V3.0+.
  • `get_hg_lock_diagnostics`: Diagnose lock contention by showing blocking and waiting queries.
  • `get_hg_table_info_trend`: Get table storage trend from hg_table_info, showing daily storage size, file count, and row count changes.
    • Parameters: `schema_name` (string), `table` (string), `days` (int, default 7)
  • `manage_hg_query_queue`: Create, drop, or clear a Query Queue. Requires V3.0+ and superuser privileges.
    • Parameters: `action` (string: "create", "drop", "clear"), `queue_name` (string), `max_concurrency` (int, for create), `max_queue_size` (int, for create)
  • `manage_hg_classifier`: Create or drop a classifier for a Query Queue. Requires V3.0+.
    • Parameters: `action` (string: "create", "drop"), `queue_name` (string), `classifier_name` (string), `priority` (int, for create)
  • `set_hg_query_queue_property`: Set or remove properties on a Query Queue or classifier. Requires V3.0+.
    • Parameters: `target` (string: "queue", "classifier"), `queue_name` (string), `property_key` (string), `property_value` (string), `classifier_name` (string, for classifier), `action` (string: "set", "remove")
  • `manage_hg_warehouse`: Manage a computing group: suspend, resume, restart, rename, or resize. Requires superuser.
    • Parameters: `action` (string: "suspend", "resume", "restart", "rename", "resize"), `warehouse_name` (string), `cu` (int, for resize), `new_name` (string, for rename)
  • `get_hg_warehouse_status`: Get detailed running status and scaling progress of a computing group.
    • Parameters: `warehouse_name` (string)
  • `rebalance_hg_warehouse`: Trigger shard rebalancing for a computing group to eliminate data skew.
    • Parameters: `warehouse_name` (string)
  • `list_hg_data_masking_rules`: List all data masking rules configured via hg_anon extension (column-level and user-level).
  • `query_hg_external_files`: Query files directly from OSS using EXTERNAL_FILES function without creating foreign tables. Requires V4.1+.
    • Parameters: `path` (string), `format` (string: "csv", "parquet", "orc"), `columns` (string, optional), `oss_endpoint` (string, optional), `role_arn` (string, optional)
  • `get_hg_guc_config`: Get the current value of a GUC (Grand Unified Configuration) parameter.
    • Parameters: `guc_name` (string)

Resources

Built-in Resources

  • `hologres:///schemas`: Get all schemas in Hologres database

Resource Templates

  • `hologres:///{schema}/tables`: List all tables in a schema in Hologres database
  • `hologres:///{schema}/{table}/partitions`: List all partitions of a partitioned table in Hologres database
  • `hologres:///{schema}/{table}/ddl`: Get table DDL in Hologres database
  • `hologres:///{schema}/{table}/statistic`: Show collected table statistics in Hologres database
  • `system:///{+system_path}`:

System paths include:

    Prompts

    • `analyze_table_performance`: Generate a prompt to analyze table performance in Hologres
    • `optimize_query`: Generate a prompt to optimize a SQL query in Hologres
    • `explore_schema`: Generate a prompt to explore a schema in Hologres database

    Testing

    The project includes comprehensive unit tests and integration tests.

    Unit Tests

    Unit tests do not require a database connection and use mocked dependencies. The test suite includes 326 test cases covering:

    • Tools functionality and SQL validation
    • Resources and resource templates
    • Prompts generation
    • Utility functions and error handling
    • Concurrency scenarios
    • SQL injection protection
    bash
    # Run all unit tests
    uv run pytest tests/unit/ -v
    
    # Run specific test file
    uv run pytest tests/unit/test_tools.py -v
    
    # Run with coverage
    uv run pytest tests/unit/ --cov=src/hologres_mcp_server --cov-report=html

    Integration Tests

    Integration tests require a real Hologres database connection. The test suite includes 61 test cases organized into 12 test classes:

    Test ClassTestsDescription
    `TestMCPConnection`5MCP server connection and basic functionality
    `TestMCPResources`14Resource reading functionality (schemas, tables, DDL, statistics, partitions, query logs)
    `TestMCPTools`10Tool calls for read-only operations
    `TestMCPProcedureTools`3Stored procedure tool calls
    `TestMCPMaxComputeTools`1MaxCompute foreign table creation
    `TestMCPDDLTools`5DDL operations (CREATE, ALTER, DROP, COMMENT)
    `TestMCPDMLTools`3DML operations (INSERT, UPDATE, DELETE)
    `TestErrorHandling`3Error handling and edge cases
    `TestMCPPrompts`4Prompt generation functionality
    `TestMCPConcurrency`3Concurrent MCP operations
    `TestMCPBoundaryConditions`4Edge cases (Unicode, NULL, empty results)
    `TestMCPPerformance`3Performance scenarios (large/wide result sets)

    1. Create a configuration file from the example:

    bash
    cp tests/integration/.test_mcp_client_env_example tests/integration/.test_mcp_client_env

    2. Edit the configuration file with your Hologres credentials:

    code
    HOLOGRES_HOST=your-hologres-instance.hologres.aliyuncs.com
    HOLOGRES_PORT=80
    HOLOGRES_USER=your_username
    HOLOGRES_PASSWORD=your_password
    HOLOGRES_DATABASE=your_database

    3. Run the integration tests:

    bash
    # Run all integration tests
    uv run pytest tests/integration/ -v -m integration
    
    # Run specific test class
    uv run pytest tests/integration/test_mcp_integration.py::TestMCPTools -v
    
    # Run all tests (unit + integration)
    uv run pytest tests/ -v

    Note: Integration tests will be skipped if the `.test_mcp_client_env` file is missing or contains incomplete configuration.

    Code Quality

    This project uses ruff for code linting and formatting.

    bash
    # Install dev dependencies
    uv sync --dev
    uv pip install ruff
    
    # Check code style
    uv run ruff check .
    
    # Check and auto-fix
    uv run ruff check . --fix
    
    # Format code
    uv run ruff format .
    
    # Format check only (no changes)
    uv run ruff format . --check

    Build & Publish

    Build

    This project uses hatchling as the build backend. Build artifacts will be generated in the `dist/` directory.

    bash
    # Using uv (recommended)
    uv build
    
    # Or using python build module
    pip install build
    python -m build

    Publish to PyPI

    bash
    # Install twine
    pip install twine
    
    # Upload to PyPI
    twine upload dist/*
    
    # Or upload to Test PyPI first for verification
    twine upload --repository testpypi dist/*

    Release Workflow

    bash
    # 1. Update version in pyproject.toml
    # 2. Clean old build artifacts
    rm -rf dist/
    
    # 3. Build
    uv build
    
    # 4. Publish
    twine upload dist/*
    
    # 5. Tag the release
    git tag -a v1.0.3 -m "Release v1.0.3"
    git push origin v1.0.3

    Update CLI Feature

    bash
    # Use FastMCP framework to generate CLI code and Skill
    uv run fastmcp generate-cli hologres-mcp-server hologres_mcp_cli/hologres_mcp_cli.py -f

    Frequently asked questions

    What is alibabacloud-hologres-mcp-server?

    alibabacloud-hologres-mcp-server is a Model Context Protocol (MCP) server listed in the TrackMCP directory.

    How do I install alibabacloud-hologres-mcp-server?

    Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

    Is alibabacloud-hologres-mcp-server open source?

    Yes — it is hosted on GitHub at https://github.com/aliyun/alibabacloud-hologres-mcp-server and has 23 stars.

    Related MCP tools

    Run your own MCP server? See who uses it and what to fix.

    Measure it with TrackMCP