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
docs: Update README and Docker README for v1.9.3 Enhanced Virtual Tables
📚 COMPREHENSIVE DOCUMENTATION UPDATE:
📖 MAIN README UPDATES:
- Update version to v1.9.3 with timestamp
- Add Enhanced Virtual Tables to overview and key features
- Add comprehensive Enhanced Virtual Tables section with:
* Detailed tool documentation (create_enhanced_csv_table, analyze_csv_schema, etc.)
* Smart Type Inference Engine explanation
* JSON Collection Virtual Tables with flattening
* Example workflows for CSV and JSON import
* Advanced features and performance benefits
- Update tool count from 40 to 44 tools
- Move Enhanced CSV/JSON from planned to implemented features
- Update planned enhancements with new future priorities
🐳 DOCKER README UPDATES:
- Update version to v1.9.3 in header
- Add Enhanced Virtual Tables to key features
- Update tool count to 44 with enhanced virtual table capabilities
✨ HIGHLIGHTS:
- Smart data import with automatic type inference now documented
- Complete workflow examples for CSV and JSON processing
- Clear explanation of nested object flattening capabilities
- Performance and configuration options detailed
Documentation now reflects the intelligent data import capabilities
and enhanced virtual table features in v1.9.3.
Copy file name to clipboardExpand all lines: README-Docker.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# SQLite MCP Server
2
2
3
-
*Last Updated September 17, 2025 12:39 AM EST - v1.9.2*
3
+
*Last Updated September 17, 2025 1:10 AM EST - v1.9.3*
4
4
5
5
*Lightweight, containerized SQLite database server with AI-native features*
6
6
@@ -73,6 +73,7 @@ docker run -i --rm \
73
73
-**JSON Validation**: Prevents invalid JSON from being stored in the database
74
74
-**Comprehensive Schema Tools**: Enhanced tools for exploring and documenting database structure
75
75
-**Database Administration Tools**: Complete suite of maintenance tools including VACUUM, ANALYZE, integrity checks, performance statistics, and index usage analysis
76
+
-**Enhanced Virtual Tables**: Smart CSV/JSON import with automatic data type inference and schema analysis (44 tools total)
76
77
-**Full-Text Search (FTS5)**: Comprehensive FTS5 implementation with table creation, index management, and enhanced search with BM25 ranking and snippets
77
78
-**Backup/Restore Operations**: Enterprise-grade backup and restore capabilities with SQLite backup API, integrity verification, and safety confirmations
Copy file name to clipboardExpand all lines: README.md
+112-9Lines changed: 112 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# SQLite MCP Server
2
2
3
-
*Last Updated September 17, 2025 11:55 PM EST - v1.9.2*
3
+
*Last Updated September 17, 2025 1:10 AM EST - v1.9.3*
4
4
5
5
## Overview
6
6
7
-
The SQLite MCP Server provides advanced database interaction and business intelligence capabilities through SQLite featuring Vector Index Optimization with ANN search, Intelligent MCP Resources and Prompts, Semantic/Vector Search, Virtual Table Management, Advanced PRAGMA Operations, Backup/Restore operations, Full-Text Search (FTS5), enhanced JSONB support for improved JSON storage efficiency, transaction safety for all database operations, foreign key constraint enforcement, enhanced error handling, and detailed diagnostics.
7
+
The SQLite MCP Server provides advanced database interaction and business intelligence capabilities through SQLite featuring Enhanced Virtual Tables with Smart Type Inference, Vector Index Optimization with ANN search, Intelligent MCP Resources and Prompts, Semantic/Vector Search, Virtual Table Management, Advanced PRAGMA Operations, Backup/Restore operations, Full-Text Search (FTS5), enhanced JSONB support for improved JSON storage efficiency, transaction safety for all database operations, foreign key constraint enforcement, enhanced error handling, and detailed diagnostics.
8
8
9
9
## Key Features
10
10
@@ -23,6 +23,7 @@ The SQLite MCP Server provides advanced database interaction and business intell
23
23
-**Backup/Restore Operations**: Enterprise-grade backup and restore capabilities with SQLite backup API, integrity verification, and safety confirmations
-**Virtual Table Management**: Complete virtual table lifecycle management for R-Tree spatial indexing, CSV file access, and sequence generation
26
+
-**Enhanced Virtual Tables**: Smart CSV/JSON import with automatic data type inference, nested object flattening, and schema analysis
26
27
-**Semantic/Vector Search**: AI-native semantic search with embedding storage, cosine similarity, and hybrid keyword+semantic ranking
27
28
-**Vector Index Optimization**: Approximate Nearest Neighbor (ANN) search with k-means clustering and spatial indexing for sub-linear O(log n) performance
28
29
-**Intelligent MCP Resources**: Dynamic database meta-awareness with real-time schema, capabilities, statistics, search indexes, and performance insights
The SQLite MCP Server provides intelligent data import capabilities with automatic schema detection, type inference, and seamless conversion of CSV and JSON files into queryable SQLite tables.
1099
+
1100
+
### Enhanced CSV Virtual Tables
1101
+
1102
+
**`create_enhanced_csv_table`** - Smart CSV import with automatic data type inference
SELECT user_id, event_type, metadata_browser FROM user_activity
1196
+
```
1197
+
1095
1198
## Vector Index Optimization
1096
1199
1097
1200
The SQLite MCP Server provides enterprise-grade vector index optimization with Approximate Nearest Neighbor (ANN) search capabilities, transforming vector similarity search from O(n) linear to O(log n) sub-linear performance for massive datasets.
@@ -1208,7 +1311,7 @@ MCP Resources provide dynamic "knowledge hooks" that give the AI model instant a
1208
1311
**`database://capabilities`** - Comprehensive server capabilities matrix
1209
1312
```javascript
1210
1313
// Provides real-time information about:
1211
-
// - Available tools (40 total)
1314
+
// - Available tools (44 total)
1212
1315
// - Feature support (FTS5, semantic search, virtual tables)
1213
1316
// - Advanced features and limitations
1214
1317
// - Server and SQLite versions
@@ -1282,13 +1385,13 @@ MCP Prompts provide intelligent workflow automation, acting as "recipes" that gu
1282
1385
1283
1386
## Planned Future Enhancements
1284
1387
1285
-
#### **1. Enhanced CSV Virtual Tables - MEDIUM PRIORITY**
1286
-
-**Planned**: Advanced CSV parsing with data type inference
1287
-
-**Examples**: Automatic schema detection, column type conversion
1388
+
#### **1. Advanced Data Connectors - MEDIUM PRIORITY**
1389
+
-**Planned**: Direct database connectors (PostgreSQL, MySQL, MongoDB)
1390
+
-**Examples**: Cross-database queries, data synchronization
1288
1391
1289
-
#### **2. JSON Virtual Tables - LOW PRIORITY**
1290
-
-**Planned**: Virtual tables for JSON file collections
1291
-
-**Examples**: JSON Lines (JSONL) file processing
1392
+
#### **2. Real-time Data Streaming - LOW PRIORITY**
1393
+
-**Planned**: Live data ingestion from streaming sources
1394
+
-**Examples**: Kafka, WebSocket, API polling integration
0 commit comments