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.
Files changed (2) hide show
  1. package/README.md +21 -21
  2. 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
- | Fonksiyon | Açıklama |
70
- |-----------|----------|
71
- | `connect_database` | SQL Server'a bağlantı kurar |
72
- | `connection_status` | Bağlantı durumunu kontrol eder |
73
- | `disconnect_database` | Bağlantıyı kapatır |
74
- | `execute_query` | SQL sorgusu çalıştırır (SELECT, INSERT, UPDATE, DELETE) |
75
- | `execute_procedure` | Stored procedure çalıştırır |
76
- | `get_schema` | Veritabanı şemasını listeler (tablolar, views, procedures) |
77
- | `describe_table` | Tablo yapısını detaylı gösterir |
78
- | `list_databases` | Tüm veritabanlarını listeler |
79
- | `get_table_data` | Tablo verilerini sayfalama ile getirir |
80
-
81
- ## Güvenlik Notları
82
-
83
- - Hassas bilgileri (şifreler) environment variable'lar ile yönetin
84
- - Üretim ortamında güçlü şifreler kullanın
85
- - SSL/TLS bağlantısı için sertifikaları doğrulayın
86
- - SQL injection koruması için parametreli sorgular kullanın
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
- Bu proje GitHub'da da mevcuttur:
90
+ This project is also available on GitHub:
91
91
  - **Repository**: [BYMCS/mssql-mcp](https://github.com/BYMCS/mssql-mcp)
92
- - **Issues**: Hata bildirimleri ve öneriler için
93
- - **Releases**: Sürüm notları ve indirmeler
92
+ - **Issues**: For bug reports and suggestions
93
+ - **Releases**: Release notes and downloads
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mssql-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP Server for MS SQL Server integration with Claude Desktop, Cursor, Windsurf and VS Code",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",