mcp-sqlite-memory-bank 0.1.0__py3-none-any.whl → 1.1.0__py3-none-any.whl
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.
- mcp_sqlite_memory_bank/__init__.py +19 -16
- mcp_sqlite_memory_bank/server.py +296 -197
- mcp_sqlite_memory_bank/types.py +6 -2
- mcp_sqlite_memory_bank/utils.py +21 -11
- {mcp_sqlite_memory_bank-0.1.0.dist-info → mcp_sqlite_memory_bank-1.1.0.dist-info}/METADATA +40 -15
- mcp_sqlite_memory_bank-1.1.0.dist-info/RECORD +10 -0
- mcp_sqlite_memory_bank-0.1.0.dist-info/RECORD +0 -10
- {mcp_sqlite_memory_bank-0.1.0.dist-info → mcp_sqlite_memory_bank-1.1.0.dist-info}/WHEEL +0 -0
- {mcp_sqlite_memory_bank-0.1.0.dist-info → mcp_sqlite_memory_bank-1.1.0.dist-info}/licenses/LICENSE +0 -0
- {mcp_sqlite_memory_bank-0.1.0.dist-info → mcp_sqlite_memory_bank-1.1.0.dist-info}/top_level.txt +0 -0
@@ -1,9 +1,11 @@
|
|
1
1
|
"""
|
2
|
-
mcp_sqlite_memory_bank: A dynamic, agent/LLM-friendly SQLite memory bank for
|
2
|
+
mcp_sqlite_memory_bank: A dynamic, agent/LLM-friendly SQLite memory bank for
|
3
|
+
MCP servers.
|
3
4
|
|
4
|
-
This package provides tools for creating, exploring, and managing SQLite
|
5
|
-
knowledge graphs
|
6
|
-
LLM-powered tools to interact with structured data in a
|
5
|
+
This package provides tools for creating, exploring, and managing SQLite
|
6
|
+
tables and knowledge graphs - enabling Copilot, Claude Desktop, VS Code,
|
7
|
+
Cursor, and other LLM-powered tools to interact with structured data in a
|
8
|
+
safe, explicit, and extensible way.
|
7
9
|
|
8
10
|
Author: Robert Meisner
|
9
11
|
Version: 0.1.0
|
@@ -23,14 +25,15 @@ from .server import (
|
|
23
25
|
update_rows,
|
24
26
|
delete_rows,
|
25
27
|
run_select_query,
|
26
|
-
|
28
|
+
|
27
29
|
# FastMCP app
|
28
30
|
app,
|
29
|
-
|
31
|
+
|
30
32
|
# Constants
|
31
|
-
DB_PATH
|
33
|
+
DB_PATH,
|
32
34
|
)
|
33
35
|
|
36
|
+
|
34
37
|
from .types import (
|
35
38
|
# Response types
|
36
39
|
CreateTableResponse,
|
@@ -46,7 +49,7 @@ from .types import (
|
|
46
49
|
SelectQueryResponse,
|
47
50
|
ErrorResponse,
|
48
51
|
ToolResponse,
|
49
|
-
|
52
|
+
|
50
53
|
# Error types
|
51
54
|
ValidationError,
|
52
55
|
DatabaseError,
|
@@ -54,10 +57,10 @@ from .types import (
|
|
54
57
|
DataError,
|
55
58
|
MemoryBankError,
|
56
59
|
ErrorCategory,
|
57
|
-
|
60
|
+
|
58
61
|
# Data types
|
59
62
|
TableColumn,
|
60
|
-
SqliteType
|
63
|
+
SqliteType,
|
61
64
|
)
|
62
65
|
|
63
66
|
# Package metadata
|
@@ -76,13 +79,13 @@ __all__ = [
|
|
76
79
|
"update_rows",
|
77
80
|
"delete_rows",
|
78
81
|
"run_select_query",
|
79
|
-
|
82
|
+
|
80
83
|
# FastMCP app
|
81
84
|
"app",
|
82
|
-
|
85
|
+
|
83
86
|
# Constants
|
84
87
|
"DB_PATH",
|
85
|
-
|
88
|
+
|
86
89
|
# Response types
|
87
90
|
"CreateTableResponse",
|
88
91
|
"DropTableResponse",
|
@@ -97,7 +100,7 @@ __all__ = [
|
|
97
100
|
"SelectQueryResponse",
|
98
101
|
"ErrorResponse",
|
99
102
|
"ToolResponse",
|
100
|
-
|
103
|
+
|
101
104
|
# Error types
|
102
105
|
"ValidationError",
|
103
106
|
"DatabaseError",
|
@@ -105,8 +108,8 @@ __all__ = [
|
|
105
108
|
"DataError",
|
106
109
|
"MemoryBankError",
|
107
110
|
"ErrorCategory",
|
108
|
-
|
111
|
+
|
109
112
|
# Data types
|
110
113
|
"TableColumn",
|
111
|
-
"SqliteType"
|
114
|
+
"SqliteType",
|
112
115
|
]
|