Skip to content

Commit a7f973e

Browse files
Add support for bulk insert in Node MCP Server (#50)
* Update documentation with new path * Fix describe table * Init Bulk Insert Implentation * Bulk insert working * Fix path in claude sample file * Update comment --------- Co-authored-by: Akshay Mata <akma@microsoft.com>
1 parent c6153bb commit a7f973e

File tree

5 files changed

+328
-232
lines changed

5 files changed

+328
-232
lines changed

MssqlMcp/Node/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ This server leverages the Model Context Protocol (MCP), a versatile framework th
6565
"mssql-nodejs": {
6666
"type": "stdio",
6767
"command": "node",
68-
"args": ["q:\\Repos\\SQL-AI-samples\\MssqlMcp\\NodejsMcpServer\\dist\\index.js"],
68+
"args": ["q:\\Repos\\SQL-AI-samples\\MssqlMcp\\Node\\dist\\index.js"],
6969
"env": {
7070
"SERVER_NAME": "your-server-name.database.windows.net",
7171
"DATABASE_NAME": "your-database-name",
@@ -88,7 +88,7 @@ This server leverages the Model Context Protocol (MCP), a versatile framework th
8888
"servers": {
8989
"mssql": {
9090
"command": "node",
91-
"args": ["C:/path/to/your/NodejsMcpServer/dist/index.js"],
91+
"args": ["C:/path/to/your/Node/dist/index.js"],
9292
"env": {
9393
"SERVER_NAME": "your-server-name.database.windows.net",
9494
"DATABASE_NAME": "your-database-name",
@@ -122,7 +122,7 @@ This server leverages the Model Context Protocol (MCP), a versatile framework th
122122
"mcpServers": {
123123
"mssql": {
124124
"command": "node",
125-
"args": ["C:/path/to/your/NodejsMcpServer/dist/index.js"],
125+
"args": ["C:/path/to/your/Node/dist/index.js"],
126126
"env": {
127127
"SERVER_NAME": "your-server-name.database.windows.net",
128128
"DATABASE_NAME": "your-database-name",

0 commit comments

Comments
 (0)