chore(configuration): add mcp server settings for mssql and playwright

main
fengruixiang 2026-05-25 16:40:27 +08:00
parent dcdcdf4cb2
commit bcf6830814
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{
"mcpServers": {
"mssql": {
"command": "uvx",
"args": ["mcp-server-mssql"],
"env": {
"MSSQL_CONNECTION_STRING": "Server=localhost;Database=YourDatabase;User Id=YourUser;Password=YourPassword;TrustServerCertificate=True"
},
"disabled": false,
"autoApprove": []
},
"playwright": {
"command": "npx",
"args": ["-y", "@executeautomation/playwright-mcp-server"],
"disabled": false,
"autoApprove": []
}
}
}