Skip to main content
Glama
OTAKU-Wang

highgo-mcp

by OTAKU-Wang

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 npx without 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=数据库名

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-server

Configuration 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

  1. query: Execute SQL queries.

    • Parameters: sql (required), search_path (optional).

  2. list_tables: View all tables under a specified schema.

    • Parameters: schema (default "public").

  3. 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.js

License

ISC

F
license - not found
Not graded
quality - not tested
F
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to safely interact with PostgreSQL databases, perform queries, inspect schemas, and analyze query performance.
    2
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to query and explore PostgreSQL databases with tools for executing SQL queries, listing tables, and describing table structures.
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Enables AI assistants to securely query and modify PostgreSQL databases, supporting SQL queries, table management, and schema inspection.

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

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