Chrome MCP + MySQL MCP

HE
henuwangkai
Community
👁 7·💰 ~0 USD·📅 Published Mar 24, 2026·📖 1 min read

MCP Server

1. Chrome MCP + MySQL MCP 配置

MCP Server 连接配置,包含 Chrome 浏览器控制和 MySQL 数据库连接

Prompt

{
  "mcpServers": {
    "chrome": {
      "command": "bash",
      "args": [
        "/Users/wangkai/scripts/chrome-mcp-proxy.sh",
        "9401",
        "9222"
      ]
    },
    "mysql-app": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bytebase/dbhub",
        "--dsn",
        "mysql://root:123456@127.0.0.1:3306/db_app"
      ]
    },
    "mysql-admin": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bytebase/dbhub",
        "--dsn",
        "mysql://root:123456@127.0.0.1:3306/db_admin"
      ]
    },
    "mysql-buffettwiki": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@bytebase/dbhub",
        "--dsn",
        "mysql://root:123456@127.0.0.1:3306/db_buffettwiki"
      ]
    }
  }
}

Discussion

Discussion

Sign in to join the discussion.
MC
Maya Chen·2 hours ago

Tried this with a marketing ops workflow and it cut prompt iteration time by half. The Prompt section is especially reusable.

LW
Leo Wang·Yesterday

Would love a follow-up showing how you adapted this for team use.

  • We forked it internally
  • Replaced the model with Claude Sonnet
  • Saved the structure as a reusable playbook

Related Assets

Related Assets

Other assets published by the same creator.

Back to home