You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MssqlMcp/NodejsMcpServer/README.md
+14-10Lines changed: 14 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,17 @@
1
-
# Azure SQL DB MCP Server
1
+
# MSSQL Database MCP Server
2
2
3
3
<divalign="center">
4
-
<imgsrc="./src/img/logo.png"alt="Azure SQL DB MCP server logo"width="400"/>
4
+
<imgsrc="./src/img/logo.png"alt="MSSQL Database MCP server logo"width="400"/>
5
5
</div>
6
6
7
7
## What is this? 🤔
8
8
9
-
This is a server that lets your LLMs (like Claude) talk directly to your Azure SQL DB data! Think of it as a friendly translator that sits between your AI assistant and your database, making sure they can chat securely and efficiently.
9
+
This is a server that lets your LLMs (like Claude) talk directly to your MSSQL Database data! Think of it as a friendly translator that sits between your AI assistant and your database, making sure they can chat securely and efficiently.
10
10
11
11
### Quick Example
12
12
```text
13
-
You: "What were our top 10 customers last month?"
14
-
Claude: *queries your Azure SQL DB database and gives you the answer in plain English*
13
+
You: "Show me all customers from New York"
14
+
Claude: *queries your MSSQL Database database and gives you the answer in plain English*
15
15
```
16
16
17
17
@@ -22,11 +22,15 @@ This server leverages the Model Context Protocol (MCP), a versatile framework th
22
22
Here's all you need to do:
23
23
1. Set up project (see below)
24
24
2. Add your project details to Claude Desktop's config file
25
-
3. Start chatting with your Azure SQL DB data naturally!
25
+
3. Start chatting with your MSSQL Database data naturally!
26
26
27
27
### What Can It Do? 📊
28
28
29
-
- Run Azure SQL DB queries by just asking questions in plain English
29
+
- Run MSSQL Database queries by just asking questions in plain English
30
+
- Create, read, update, and delete data
31
+
- Manage database schema (tables, indexes)
32
+
- Secure connection handling
33
+
- Real-time data interaction
30
34
31
35
## Quick Start 🚀
32
36
@@ -36,7 +40,7 @@ Here's all you need to do:
36
40
37
41
### Set up project
38
42
39
-
- Obtain Azure SQL DB server_name, database_name. Create an '.env' file and fill in details with the obtained values
43
+
- Obtain MSSQL Database server_name, database_name. Create an '.env' file and fill in details with the obtained values
40
44
41
45
```
42
46
SERVER_NAME='<INSERT>'
@@ -66,7 +70,7 @@ DATABASE_NAME='<INSERT>'
66
70
4.**Confirmation Message**
67
71
You should see the following message:
68
72
```
69
-
Azure SQL DB Server running on stdio
73
+
MSSQL Database Server running on stdio
70
74
```
71
75
72
76
### Add your project details to Claude Destkop's config file, and set parameters accordingly
@@ -90,4 +94,4 @@ Open Claude Desktop and Navigate to File -> Settings -> Developer -> Edit Config
90
94
91
95
```
92
96
93
-
You should now have successfully configured the MCP server for Azure SQL DB with Claude Desktop. This setup allows you to seamlessly interact with Azure SQL DB through the MCP server.
97
+
You should now have successfully configured the MCP server for MSSQL Database with Claude Desktop. This setup allows you to seamlessly interact with MSSQL Database through the MCP server.
0 commit comments