logo
icon

hs-sql-agent

hs-sql-agent is an HTTP MCP server for relational databases with an integrated admin panel.

template cover
Deployed3 times
Publishertse-wei-chen
Created2026-04-08
Services
service icon
Tags
MCPMCP ServerSQLPostgreSQLSQL Agenths-sql-agent

hs-sql-agent

version: latest

hs-sql-agent is an HTTP MCP server for relational databases with an integrated admin panel. It lets MCP clients call safe SQL tools while you manage access keys, audit logs, per-key database mapping, and global rate limits.

How to Use

First-time setup flow

  1. Deploy the template (you will need to enter a subdomain). Wait for the deployment to complete and the service to be running.
  2. Open the admin panel using the provided domain (shown in Zeabur Instructions).
  3. First run: create the first admin account.
  4. Sign in with that admin account.
  5. Go to Runtime MCP Keys page (/runtime/mcp-keys).
  6. Fill the form and click Issue Key to create a new MCP key.
  7. Copy the One-time key value immediately (it is only shown once).
  8. Paste that value into MCP client config headers: "X-MCP-Server-Key": "<YOUR_MCP_KEY>".
  9. Replace <YOUR_MCP_Endpoint> with the actual MCP endpoint URL shown in Zeabur Instructions.

Claude Desktop

{
  "mcpServers": {
    "hs-sql-agent": {
      "url": "<YOUR_MCP_Endpoint>",
      "headers": { "X-MCP-Server-Key": "<YOUR_MCP_KEY>" }
    }
  }
}

VS Code

{
  "servers": {
    "hs-sql-agent": {
      "type": "http",
      "url": "<YOUR_MCP_Endpoint>",
      "headers": { "X-MCP-Server-Key": "<YOUR_MCP_KEY>" }
    }
  }
}

Cursor

{
  "mcpServers": {
    "hs-sql-agent": {
      "type": "http",
      "url": "<YOUR_MCP_Endpoint>",
      "headers": { "X-MCP-Server-Key": "<YOUR_MCP_KEY>" }
    }
  }
}