highgo-mcp
Click on "Deploy 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
This is a Highgo Database service implemented based on the Model Context Protocol (MCP). It allows AI agents (such as Claude Desktop, Gemini CLI, etc.) to directly connect to, query, and analyze data in a Highgo Database.
Features
SQL Execution: Supports executing arbitrary SQL statements, including Highgo-specific SM3 encryption and syntax.
Schema Management: Supports dynamic switching of the working schema via
search_path.Metadata Querying: Quickly list table structures, field types, and comments in the database.
Independent Distribution: Supports running directly via
npxwithout global installation.
Related MCP server: PostgreSQL MCP Server
Quick Start
1. Prerequisites
Node.js installed (v18+ recommended)
Connection information for the Highgo Database
2. Database Configuration
Create a .env file in the project root directory, or set the following environment variables in your runtime environment:
HIGHGO_HOST=172.22.*.*
HIGHGO_PORT=5866
HIGHGO_USER=用户名
HIGHGO_PASSWORD=您的密码
HIGHGO_DATABASE=数据库名3. Running with npx (Recommended)
If you are developing locally, you can run it directly in the project directory:
npx .If you have published it to NPM or are referencing it as a Git dependency, you can run it remotely:
npx highgo-mcp-serverConfiguration in AI Agents
Claude Desktop
Modify your claude_desktop_config.json file:
{
"mcpServers": {
"highgo": {
"command": "npx",
"args": ["-y", "/path/to/highgo-mcp"],
"env": {
"HIGHGO_HOST": "172.22.*.*",
"HIGHGO_USER": "用户名",
"HIGHGO_PASSWORD": "您的密码",
"HIGHGO_DATABASE": "数据库名"
}
}
}
}Gemini CLI
Add similar entries to your configuration file.
Available Tools
query: Execute SQL queries.Parameters:
sql(required),search_path(optional).
list_tables: View all tables under a specified schema.Parameters:
schema(default "public").
describe_table: View detailed column information for a table.Parameters:
table_name(required),schema(default "public").
Local Development
# 安装依赖
npm install
# 本地链接以便测试
npm link
# 直接运行
node bin/mcp-server.jsLicense
ISC
This server cannot be deployed
Maintenance
Related MCP Connectors
- dataOAuthco.thinair
PostgreSQL, MySQL, and SQL Server in one session. 26 read-only MCP tools for AI agents.
PostgreSQL, MySQL, OpenAPI/Swagger, and shared Agent Memory with scoped access.
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
Deterministic safety, correctness & cost gate that vets Postgres SQL before your AI agent runs it.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with PostgreSQL databases through natural language queries, schema inspection, and safe SQL execution.7 npm1-
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to safely interact with PostgreSQL databases, perform queries, inspect schemas, and analyze query performance.2-
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to query and explore PostgreSQL databases with tools for executing SQL queries, listing tables, and describing table structures.MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to securely query and modify PostgreSQL databases, supporting SQL queries, table management, and schema inspection.-