Commit c8cc100
committed
feat: Rename database file to sqlite_mcp.db and clarify why database files are created
🔧 DATABASE FILENAME CHANGE:
- Changed default database name from 'database.db' to 'sqlite_mcp.db'
- More descriptive filename that clearly identifies its purpose
- Updated both start_sqlite_mcp.py and server.py defaults
📚 ENHANCED DOCUMENTATION:
- Added clear explanation of WHY database files are created
- 'MCP operations require persistent storage between tool calls'
- Clarified that tables, indexes, and data must persist between sessions
- Updated all examples and best practices to use sqlite_mcp.db
🎯 KEY BENEFITS:
- Clearer filename indicates this is for MCP server operations
- Users understand the necessity of persistent file storage
- Eliminates confusion about why a database file appears
- Maintains all existing functionality with better naming
The database file creation is essential for MCP functionality -
this update makes that purpose crystal clear to users.1 parent 36ca025 commit c8cc100
File tree
4 files changed
+13
-11
lines changed- src/mcp_server_sqlite
4 files changed
+13
-11
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | | - | |
9 | | - | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
638 | 638 | | |
639 | 639 | | |
640 | 640 | | |
641 | | - | |
642 | | - | |
| 641 | + | |
| 642 | + | |
| 643 | + | |
643 | 644 | | |
644 | 645 | | |
645 | 646 | | |
| |||
654 | 655 | | |
655 | 656 | | |
656 | 657 | | |
657 | | - | |
| 658 | + | |
658 | 659 | | |
659 | 660 | | |
660 | 661 | | |
661 | 662 | | |
662 | 663 | | |
663 | | - | |
| 664 | + | |
664 | 665 | | |
665 | 666 | | |
666 | 667 | | |
| |||
699 | 700 | | |
700 | 701 | | |
701 | 702 | | |
702 | | - | |
703 | | - | |
| 703 | + | |
| 704 | + | |
704 | 705 | | |
705 | 706 | | |
706 | 707 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
405 | 405 | | |
406 | 406 | | |
407 | 407 | | |
408 | | - | |
| 408 | + | |
409 | 409 | | |
410 | 410 | | |
411 | 411 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
99 | 99 | | |
100 | 100 | | |
101 | 101 | | |
102 | | - | |
103 | | - | |
| 102 | + | |
| 103 | + | |
104 | 104 | | |
105 | 105 | | |
106 | 106 | | |
| |||
0 commit comments