Hologres MCP Server
Overview
Hologres MCP Server serves as a universal interface between AI Agents and Hologres databases, enabling seamless communication and SQL operations.
You can use Hologres MCP Server by either downloading it from GitHub or installing it via pip. Configuration is required to integrate it with the MCP client.
- Execute SQL queries in Hologres databases. - Collect table statistics and retrieve query plans. - Access built-in resources for database management.
- Facilitating AI Agents to interact with Hologres databases.
- Executing complex SQL queries through AI interfaces.
- Analyzing database performance and statistics.
Add to your AI client
Use these steps to connect Hologres MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"alibabacloud-hologres-mcp-server-aliyun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-alibabacloud-hologres-mcp-server-aliyun"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"alibabacloud-hologres-mcp-server-aliyun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-alibabacloud-hologres-mcp-server-aliyun"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"alibabacloud-hologres-mcp-server-aliyun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-alibabacloud-hologres-mcp-server-aliyun"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"alibabacloud-hologres-mcp-server-aliyun": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-alibabacloud-hologres-mcp-server-aliyun"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"alibabacloud-hologres-mcp-server-aliyun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-alibabacloud-hologres-mcp-server-aliyun"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"alibabacloud-hologres-mcp-server-aliyun": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-alibabacloud-hologres-mcp-server-aliyun"
]
}
}
}FAQ
What programming language is Hologres MCP Server written in?
Hologres MCP Server is written in Python.
Is there a license for Hologres MCP Server?
Yes, it is licensed under the Apache-2.0 license.
How can I contribute to Hologres MCP Server?
You can contribute by submitting issues or pull requests on the GitHub repository.