mirror of
https://github.com/executeautomation/mcp-database-server.git
synced 2025-12-09 21:12:57 +08:00
Updated release notes
This commit is contained in:
BIN
docs/docs/img/.DS_Store
vendored
Normal file
BIN
docs/docs/img/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
docs/docs/img/mcp-server.gif
Normal file
BIN
docs/docs/img/mcp-server.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.7 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 416 KiB |
@@ -15,7 +15,11 @@ With the MCP Database Server, you can:
|
|||||||
- Export query results as CSV or JSON
|
- Export query results as CSV or JSON
|
||||||
- Track business insights discovered during database analysis
|
- Track business insights discovered during database analysis
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
:::tip What's New
|
||||||
|
Check our [Release Notes](./release-notes) to see what's new in version 1.0.2!
|
||||||
|
:::
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
|||||||
56
docs/docs/release-notes.md
Normal file
56
docs/docs/release-notes.md
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
# Release Notes
|
||||||
|
|
||||||
|
## Version 1.0.2 (Current)
|
||||||
|
|
||||||
|
**Release Date:** April 2025
|
||||||
|
|
||||||
|
### New Features
|
||||||
|
- Complete overhaul of documentation with new Docusaurus implementation
|
||||||
|
- Updated branding with blue color scheme
|
||||||
|
- Added comprehensive connection reference guide
|
||||||
|
- Improved database tools documentation
|
||||||
|
- New getting started guide for easier onboarding
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
- Better error handling for database connections
|
||||||
|
- Enhanced SQL query performance, particularly for large result sets
|
||||||
|
- Updated Node.js dependencies to the latest stable versions
|
||||||
|
- Improved security for credential handling
|
||||||
|
- Added environment variable support for sensitive connection information
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
- Fixed connection issue with SQL Server when using Windows Authentication
|
||||||
|
- Corrected error in PostgreSQL RETURNING clause handling
|
||||||
|
- Addressed memory leak in connection pooling
|
||||||
|
- Fixed date formatting in SQLite exports
|
||||||
|
|
||||||
|
## Version 1.0.1
|
||||||
|
|
||||||
|
**Release Date:** April 2025
|
||||||
|
|
||||||
|
### New Features
|
||||||
|
- Initial support for PostgreSQL databases
|
||||||
|
- Added export functionality for CSV and JSON formats
|
||||||
|
- Introduced business insights tracking with memo feature
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
- Enhanced error reporting for failed queries
|
||||||
|
- Better handling of large result sets
|
||||||
|
- Optimized connection pooling for SQL Server
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
- Fixed SQL Server authentication with special characters in password
|
||||||
|
- Addressed timeout issues with long-running queries
|
||||||
|
- Resolved schema detection problems with certain table names
|
||||||
|
|
||||||
|
## Version 1.0.0
|
||||||
|
|
||||||
|
**Release Date:** April 2025
|
||||||
|
|
||||||
|
### Initial Release Features
|
||||||
|
- Support for SQLite and SQL Server databases
|
||||||
|
- Basic SQL query execution (SELECT, INSERT, UPDATE, DELETE)
|
||||||
|
- Table management (CREATE, ALTER, DROP)
|
||||||
|
- Schema introspection
|
||||||
|
- MCP integration for Claude Desktop
|
||||||
|
- Node.js-based implementation for cross-platform support
|
||||||
@@ -19,12 +19,15 @@ const sidebars: SidebarsConfig = {
|
|||||||
// But you can create a sidebar manually
|
// But you can create a sidebar manually
|
||||||
tutorialSidebar: [
|
tutorialSidebar: [
|
||||||
'intro',
|
'intro',
|
||||||
|
'release-notes',
|
||||||
'getting-started',
|
'getting-started',
|
||||||
{
|
{
|
||||||
type: 'category',
|
type: 'category',
|
||||||
label: 'Database Setup',
|
label: 'Database Setup',
|
||||||
items: [
|
items: [
|
||||||
'sqlite-setup',
|
'sqlite-setup',
|
||||||
|
'sql-server-setup',
|
||||||
|
'postgresql-setup',
|
||||||
'connection-reference',
|
'connection-reference',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|||||||
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "@executeautomation/database-server",
|
"name": "@executeautomation/database-server",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@executeautomation/database-server",
|
"name": "@executeautomation/database-server",
|
||||||
"version": "1.0.1",
|
"version": "1.0.2",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@modelcontextprotocol/sdk": "1.9.0",
|
"@modelcontextprotocol/sdk": "1.9.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user