mcp-sqlite-memory-bank 0.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.
@@ -0,0 +1,112 @@
1
+ """
2
+ mcp_sqlite_memory_bank: A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers.
3
+
4
+ This package provides tools for creating, exploring, and managing SQLite tables and
5
+ knowledge graphs—enabling Copilot, Claude Desktop, VS Code, Cursor, and other
6
+ LLM-powered tools to interact with structured data in a safe, explicit, and extensible way.
7
+
8
+ Author: Robert Meisner
9
+ Version: 0.1.0
10
+ License: MIT
11
+ """
12
+
13
+ from .server import (
14
+ # Core tools
15
+ create_table,
16
+ drop_table,
17
+ rename_table,
18
+ list_tables,
19
+ describe_table,
20
+ list_all_columns,
21
+ create_row,
22
+ read_rows,
23
+ update_rows,
24
+ delete_rows,
25
+ run_select_query,
26
+
27
+ # FastMCP app
28
+ app,
29
+
30
+ # Constants
31
+ DB_PATH
32
+ )
33
+
34
+ from .types import (
35
+ # Response types
36
+ CreateTableResponse,
37
+ DropTableResponse,
38
+ RenameTableResponse,
39
+ ListTablesResponse,
40
+ DescribeTableResponse,
41
+ ListAllColumnsResponse,
42
+ CreateRowResponse,
43
+ ReadRowsResponse,
44
+ UpdateRowsResponse,
45
+ DeleteRowsResponse,
46
+ SelectQueryResponse,
47
+ ErrorResponse,
48
+ ToolResponse,
49
+
50
+ # Error types
51
+ ValidationError,
52
+ DatabaseError,
53
+ SchemaError,
54
+ DataError,
55
+ MemoryBankError,
56
+ ErrorCategory,
57
+
58
+ # Data types
59
+ TableColumn,
60
+ SqliteType
61
+ )
62
+
63
+ # Package metadata
64
+ __version__ = "0.1.0"
65
+ __author__ = "Robert Meisner"
66
+ __all__ = [
67
+ # Core tools
68
+ "create_table",
69
+ "drop_table",
70
+ "rename_table",
71
+ "list_tables",
72
+ "describe_table",
73
+ "list_all_columns",
74
+ "create_row",
75
+ "read_rows",
76
+ "update_rows",
77
+ "delete_rows",
78
+ "run_select_query",
79
+
80
+ # FastMCP app
81
+ "app",
82
+
83
+ # Constants
84
+ "DB_PATH",
85
+
86
+ # Response types
87
+ "CreateTableResponse",
88
+ "DropTableResponse",
89
+ "RenameTableResponse",
90
+ "ListTablesResponse",
91
+ "DescribeTableResponse",
92
+ "ListAllColumnsResponse",
93
+ "CreateRowResponse",
94
+ "ReadRowsResponse",
95
+ "UpdateRowsResponse",
96
+ "DeleteRowsResponse",
97
+ "SelectQueryResponse",
98
+ "ErrorResponse",
99
+ "ToolResponse",
100
+
101
+ # Error types
102
+ "ValidationError",
103
+ "DatabaseError",
104
+ "SchemaError",
105
+ "DataError",
106
+ "MemoryBankError",
107
+ "ErrorCategory",
108
+
109
+ # Data types
110
+ "TableColumn",
111
+ "SqliteType"
112
+ ]
File without changes