配置

HE
henuwangkai
Community
👁 8·💰 ~0 USD·📅 发布于 2026年3月24日·📖 1 分钟阅读

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

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"
      ]
    }
  }
}

讨论区

讨论区

登录后加入讨论。
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

相关推荐

相关资产

继续查看同一作者发布的其他资产。

返回首页