mssql-mcp 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -21
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,28 +66,28 @@ You can use the following environment variables:
|
|
|
66
66
|
|
|
67
67
|
This MCP server provides 9 database operations:
|
|
68
68
|
|
|
69
|
-
|
|
|
70
|
-
|
|
71
|
-
| `connect_database` | SQL Server
|
|
72
|
-
| `connection_status` |
|
|
73
|
-
| `disconnect_database` |
|
|
74
|
-
| `execute_query` | SQL
|
|
75
|
-
| `execute_procedure` |
|
|
76
|
-
| `get_schema` |
|
|
77
|
-
| `describe_table` |
|
|
78
|
-
| `list_databases` |
|
|
79
|
-
| `get_table_data` |
|
|
80
|
-
|
|
81
|
-
##
|
|
82
|
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
- SSL/TLS
|
|
86
|
-
-
|
|
69
|
+
| Function | Description |
|
|
70
|
+
|----------|-------------|
|
|
71
|
+
| `connect_database` | Establishes connection to SQL Server |
|
|
72
|
+
| `connection_status` | Checks connection status |
|
|
73
|
+
| `disconnect_database` | Closes the connection |
|
|
74
|
+
| `execute_query` | Executes SQL queries (SELECT, INSERT, UPDATE, DELETE) |
|
|
75
|
+
| `execute_procedure` | Executes stored procedures |
|
|
76
|
+
| `get_schema` | Lists database schema (tables, views, procedures) |
|
|
77
|
+
| `describe_table` | Shows detailed table structure |
|
|
78
|
+
| `list_databases` | Lists all databases |
|
|
79
|
+
| `get_table_data` | Retrieves table data with pagination |
|
|
80
|
+
|
|
81
|
+
## Security Notes
|
|
82
|
+
|
|
83
|
+
- Manage sensitive information (passwords) using environment variables
|
|
84
|
+
- Use strong passwords in production environments
|
|
85
|
+
- Verify certificates for SSL/TLS connections
|
|
86
|
+
- Use parameterized queries for SQL injection protection
|
|
87
87
|
|
|
88
88
|
## GitHub Repository
|
|
89
89
|
|
|
90
|
-
|
|
90
|
+
This project is also available on GitHub:
|
|
91
91
|
- **Repository**: [BYMCS/mssql-mcp](https://github.com/BYMCS/mssql-mcp)
|
|
92
|
-
- **Issues**:
|
|
93
|
-
- **Releases**:
|
|
92
|
+
- **Issues**: For bug reports and suggestions
|
|
93
|
+
- **Releases**: Release notes and downloads
|