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