highgo-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@highgo-mcplist all tables in the public schema"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Highgo MCP Server (瀚高数据库 MCP 服务)
这是一个基于 Model Context Protocol (MCP) 实现的瀚高数据库 (Highgo Database) 服务。它允许 AI 智能体(如 Claude Desktop, Gemini CLI 等)直接连接、查询和分析瀚高数据库中的数据。
特性
SQL 执行: 支持执行任意 SQL 语句,包括瀚高特有的 SM3 加密和语法。
Schema 管理: 支持通过
search_path动态切换工作 schema。元数据查询: 快速列出库中的表结构、字段类型及注释。
独立分发: 支持通过
npx直接运行,无需全局安装。
快速开始
1. 前置条件
已安装 Node.js (建议 v18+)
瀚高数据库的连接信息
2. 数据库配置
在项目根目录下创建一个 .env 文件,或者在运行环境中设置以下环境变量:
HIGHGO_HOST=172.22.*.*
HIGHGO_PORT=5866
HIGHGO_USER=用户名
HIGHGO_PASSWORD=您的密码
HIGHGO_DATABASE=数据库名3. 使用 npx 运行 (推荐)
如果您在本地开发,可以直接在项目目录运行:
npx .如果您已将其发布到 NPM 或作为 Git 依赖引用,可以远程运行:
npx highgo-mcp-server在 AI 智能体中配置
Claude Desktop
修改您的 claude_desktop_config.json 文件:
{
"mcpServers": {
"highgo": {
"command": "npx",
"args": ["-y", "/path/to/highgo-mcp"],
"env": {
"HIGHGO_HOST": "172.22.*.*",
"HIGHGO_USER": "用户名",
"HIGHGO_PASSWORD": "您的密码",
"HIGHGO_DATABASE": "数据库名"
}
}
}
}Gemini CLI
在配置文件中添加类似的条目。
可用工具 (Tools)
query: 执行 SQL 查询。参数:
sql(必填),search_path(可选)。
list_tables: 查看指定 Schema 下的所有表。参数:
schema(默认 "public")。
describe_table: 查看表的详细列信息。参数:
table_name(必填),schema(默认 "public")。
本地开发
# 安装依赖
npm install
# 本地链接以便测试
npm link
# 直接运行
node bin/mcp-server.js许可证
ISC
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/OTAKU-Wang/highgo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server