From bcf683081462fe59f3b1cdca03aab2d0828837cf Mon Sep 17 00:00:00 2001 From: fengruixiang <474182370@qq.com> Date: Mon, 25 May 2026 16:40:27 +0800 Subject: [PATCH] chore(configuration): add mcp server settings for mssql and playwright --- .kiro/settings/mcp.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .kiro/settings/mcp.json diff --git a/.kiro/settings/mcp.json b/.kiro/settings/mcp.json new file mode 100644 index 0000000..f927488 --- /dev/null +++ b/.kiro/settings/mcp.json @@ -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": [] + } + } +}