kboss/b/.mcp.json
2026-06-01 17:45:17 +08:00

18 lines
517 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"mcpServers": {
"mysql": {
"command": "npx",
"args": ["-y", "mcp-mysql-multi-db"],
"env": { // <-- 就是这里env 是一个对象
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3306",
"MYSQL_USER": "root",
"MYSQL_PASSWORD": "lima2018",
"MYSQL_DATABASE": "kprod",
// 👇 要执行 INSERT/UPDATE 等写操作,就在这里添加下面两行
// "ALLOW_DML": "true",
// "ALLOW_DDL": "true"
}
}
}
}