HyperChat Integration Guide

February 3, 2026 ยท View on GitHub

This guide shows how to integrate Universal Database MCP Server with HyperChat.

Overview

HyperChat is a multi-platform chat application. It supports MCP, allowing you to query databases from the chat interface.

Prerequisites

  • HyperChat installed
  • Node.js 20.0.0 or later
  • Database instance

Configuration

Add to HyperChat's MCP configuration:

{
  "mcpServers": {
    "database": {
      "command": "npx",
      "args": [
        "universal-db-mcp",
        "--type", "mysql",
        "--host", "localhost",
        "--port", "3306",
        "--user", "root",
        "--password", "your_password",
        "--database", "your_database"
      ]
    }
  }
}

Usage

Ask HyperChat about your database:

What tables are in the database?
Show me the schema of the users table

Resources