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
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 installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with PostgreSQL databases through natural language queries, schema inspection, and safe SQL execution.91
- FlicenseNot gradedqualityDmaintenanceEnables 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.
Related MCP Connectors
Analytical memory for AI agents: a real Postgres queried in plain English over MCP. One command.
Query PostgreSQL databases in plain English — LLM-generated, safety-validated SQL.
Explore, query, and inspect SQLite databases with ease. List tables, preview results, and view det…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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