mcp-sqlite-memory-bank 0.1.0__tar.gz → 0.1.1__tar.gz
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-0.1.0/src/mcp_sqlite_memory_bank.egg-info → mcp_sqlite_memory_bank-0.1.1}/PKG-INFO +15 -14
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/README.md +11 -11
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/pyproject.toml +6 -1
- mcp_sqlite_memory_bank-0.1.1/setup.cfg +14 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1/src/mcp_sqlite_memory_bank.egg-info}/PKG-INFO +15 -14
- mcp_sqlite_memory_bank-0.1.0/setup.cfg +0 -27
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/LICENSE +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/MANIFEST.in +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/__init__.py +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/py.typed +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/server.py +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/types.py +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/utils.py +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank.egg-info/SOURCES.txt +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank.egg-info/dependency_links.txt +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank.egg-info/requires.txt +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank.egg-info/top_level.txt +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/tests/test_api.py +0 -0
- {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/tests/test_server.py +0 -0
@@ -1,11 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp_sqlite_memory_bank
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers.
|
5
|
-
Home-page: https://github.com/yourusername/mcp_sqlite_memory_bank
|
6
|
-
Author: Robert Meisner
|
7
5
|
Author-email: Robert Meisner <your-email@example.com>
|
8
6
|
License-Expression: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/robertmeisner/mcp_sqlite_memory_bank
|
8
|
+
Project-URL: Source, https://github.com/robertmeisner/mcp_sqlite_memory_bank
|
9
|
+
Project-URL: Issues, https://github.com/robertmeisner/mcp_sqlite_memory_bank/issues
|
9
10
|
Classifier: Programming Language :: Python :: 3
|
10
11
|
Classifier: Operating System :: OS Independent
|
11
12
|
Requires-Python: >=3.8
|
@@ -21,7 +22,7 @@ Dynamic: license-file
|
|
21
22
|
# mcp_sqlite_memory_bank
|
22
23
|
|
23
24
|

|
24
|
-

|
25
26
|

|
26
27
|
|
27
28
|
## Overview
|
@@ -98,7 +99,7 @@ pip install mcp_sqlite_memory_bank
|
|
98
99
|
|
99
100
|
### Option 2: Clone and Install from Source (For Contributors)
|
100
101
|
```bash
|
101
|
-
git clone https://github.com/
|
102
|
+
git clone https://github.com/robertmeisner/mcp_sqlite_memory_bank.git
|
102
103
|
cd mcp_sqlite_memory_bank
|
103
104
|
pip install -e .
|
104
105
|
```
|
@@ -121,20 +122,20 @@ uvx run mcp_sqlite_memory_bank
|
|
121
122
|
uvx run mcp_sqlite_memory_bank@1.0.0
|
122
123
|
```
|
123
124
|
|
124
|
-
### Option 5: Docker (Containerized)
|
125
|
+
### Option 5: Docker (Containerized) # Coming soon - not yet implemented
|
125
126
|
```bash
|
126
127
|
# Pull the image
|
127
|
-
docker pull
|
128
|
+
docker pull robertmeisner/mcp_sqlite_memory_bank:latest
|
128
129
|
|
129
130
|
# Run with stdio transport (for Claude Desktop)
|
130
131
|
docker run -i --rm \
|
131
132
|
--mount type=bind,src=/path/to/data/dir,dst=/data \
|
132
|
-
|
133
|
+
robertmeisner/mcp_sqlite_memory_bank:latest stdio
|
133
134
|
|
134
|
-
# Run with HTTP transport (for API access)
|
135
|
+
# Run with HTTP transport (for API access)
|
135
136
|
docker run -p 8000:8000 --rm \
|
136
137
|
--mount type=bind,src=/path/to/data/dir,dst=/data \
|
137
|
-
|
138
|
+
robertmeisner/mcp_sqlite_memory_bank:latest http
|
138
139
|
```
|
139
140
|
|
140
141
|
### Transport Options
|
@@ -176,7 +177,7 @@ DB_PATH=./test.db
|
|
176
177
|
#### Quick Install
|
177
178
|
[Install with Python Module in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22python%22%2C%22args%22%3A%5B%22-m%22%2C%22mcp_sqlite_memory_bank%22%5D%7D)
|
178
179
|
|
179
|
-
[Install with Docker in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22-i%22%2C%22--rm%22%2C%22--mount%22%2C%22type%3Dbind%2Csrc%3D%24%7BworkspaceFolder%7D%2Cdst%3D%2Fdata%22%2C%
|
180
|
+
[Install with Docker in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22-i%22%2C%22--rm%22%2C%22--mount%22%2C%22type%3Dbind%2Csrc%3D%24%7BworkspaceFolder%7D%2Cdst%3D%2Fdata%22%2C%22robertmeisner%2Fmcp_sqlite_memory_bank%3Alatest%22%5D%7D)
|
180
181
|
|
181
182
|
#### Manual Configuration
|
182
183
|
|
@@ -233,7 +234,7 @@ Add to your `claude_desktop_config.json`:
|
|
233
234
|
"-i",
|
234
235
|
"--rm",
|
235
236
|
"--mount", "type=bind,src=/path/to/data/dir,dst=/data",
|
236
|
-
"
|
237
|
+
"robertmeisner/mcp_sqlite_memory_bank:latest"
|
237
238
|
],
|
238
239
|
"env": {
|
239
240
|
"DB_PATH": "/data/memory.db"
|
@@ -425,8 +426,8 @@ pytest --import-mode=importlib
|
|
425
426
|
|
426
427
|
## Support & Contact
|
427
428
|
|
428
|
-
- [GitHub Issues](https://github.com/
|
429
|
-
- [GitHub Discussions](https://github.com/
|
429
|
+
- [GitHub Issues](https://github.com/robertmeisner/mcp_sqlite_memory_bank/issues) — Bug reports & feature requests
|
430
|
+
- [GitHub Discussions](https://github.com/robertmeisner/mcp_sqlite_memory_bank/discussions) — Q&A and community support
|
430
431
|
- Email: your@email.com
|
431
432
|
|
432
433
|
---
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# mcp_sqlite_memory_bank
|
2
2
|
|
3
3
|

|
4
|
-

|
5
5
|

|
6
6
|
|
7
7
|
## Overview
|
@@ -78,7 +78,7 @@ pip install mcp_sqlite_memory_bank
|
|
78
78
|
|
79
79
|
### Option 2: Clone and Install from Source (For Contributors)
|
80
80
|
```bash
|
81
|
-
git clone https://github.com/
|
81
|
+
git clone https://github.com/robertmeisner/mcp_sqlite_memory_bank.git
|
82
82
|
cd mcp_sqlite_memory_bank
|
83
83
|
pip install -e .
|
84
84
|
```
|
@@ -101,20 +101,20 @@ uvx run mcp_sqlite_memory_bank
|
|
101
101
|
uvx run mcp_sqlite_memory_bank@1.0.0
|
102
102
|
```
|
103
103
|
|
104
|
-
### Option 5: Docker (Containerized)
|
104
|
+
### Option 5: Docker (Containerized) # Coming soon - not yet implemented
|
105
105
|
```bash
|
106
106
|
# Pull the image
|
107
|
-
docker pull
|
107
|
+
docker pull robertmeisner/mcp_sqlite_memory_bank:latest
|
108
108
|
|
109
109
|
# Run with stdio transport (for Claude Desktop)
|
110
110
|
docker run -i --rm \
|
111
111
|
--mount type=bind,src=/path/to/data/dir,dst=/data \
|
112
|
-
|
112
|
+
robertmeisner/mcp_sqlite_memory_bank:latest stdio
|
113
113
|
|
114
|
-
# Run with HTTP transport (for API access)
|
114
|
+
# Run with HTTP transport (for API access)
|
115
115
|
docker run -p 8000:8000 --rm \
|
116
116
|
--mount type=bind,src=/path/to/data/dir,dst=/data \
|
117
|
-
|
117
|
+
robertmeisner/mcp_sqlite_memory_bank:latest http
|
118
118
|
```
|
119
119
|
|
120
120
|
### Transport Options
|
@@ -156,7 +156,7 @@ DB_PATH=./test.db
|
|
156
156
|
#### Quick Install
|
157
157
|
[Install with Python Module in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22python%22%2C%22args%22%3A%5B%22-m%22%2C%22mcp_sqlite_memory_bank%22%5D%7D)
|
158
158
|
|
159
|
-
[Install with Docker in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22-i%22%2C%22--rm%22%2C%22--mount%22%2C%22type%3Dbind%2Csrc%3D%24%7BworkspaceFolder%7D%2Cdst%3D%2Fdata%22%2C%
|
159
|
+
[Install with Docker in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22-i%22%2C%22--rm%22%2C%22--mount%22%2C%22type%3Dbind%2Csrc%3D%24%7BworkspaceFolder%7D%2Cdst%3D%2Fdata%22%2C%22robertmeisner%2Fmcp_sqlite_memory_bank%3Alatest%22%5D%7D)
|
160
160
|
|
161
161
|
#### Manual Configuration
|
162
162
|
|
@@ -213,7 +213,7 @@ Add to your `claude_desktop_config.json`:
|
|
213
213
|
"-i",
|
214
214
|
"--rm",
|
215
215
|
"--mount", "type=bind,src=/path/to/data/dir,dst=/data",
|
216
|
-
"
|
216
|
+
"robertmeisner/mcp_sqlite_memory_bank:latest"
|
217
217
|
],
|
218
218
|
"env": {
|
219
219
|
"DB_PATH": "/data/memory.db"
|
@@ -405,8 +405,8 @@ pytest --import-mode=importlib
|
|
405
405
|
|
406
406
|
## Support & Contact
|
407
407
|
|
408
|
-
- [GitHub Issues](https://github.com/
|
409
|
-
- [GitHub Discussions](https://github.com/
|
408
|
+
- [GitHub Issues](https://github.com/robertmeisner/mcp_sqlite_memory_bank/issues) — Bug reports & feature requests
|
409
|
+
- [GitHub Discussions](https://github.com/robertmeisner/mcp_sqlite_memory_bank/discussions) — Q&A and community support
|
410
410
|
- Email: your@email.com
|
411
411
|
|
412
412
|
---
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "mcp_sqlite_memory_bank"
|
7
|
-
version = "0.1.
|
7
|
+
version = "0.1.1"
|
8
8
|
description = "A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers."
|
9
9
|
authors = [
|
10
10
|
{ name="Robert Meisner", email="your-email@example.com" }
|
@@ -22,6 +22,11 @@ dependencies = [
|
|
22
22
|
"uvicorn>=0.22.0",
|
23
23
|
"pydantic>=1.10.0"
|
24
24
|
]
|
25
|
+
|
26
|
+
[project.urls]
|
27
|
+
Homepage = "https://github.com/robertmeisner/mcp_sqlite_memory_bank"
|
28
|
+
Source = "https://github.com/robertmeisner/mcp_sqlite_memory_bank"
|
29
|
+
Issues = "https://github.com/robertmeisner/mcp_sqlite_memory_bank/issues"
|
25
30
|
|
26
31
|
[project.optional-dependencies]
|
27
32
|
test = ["pytest"]
|
@@ -1,11 +1,12 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp_sqlite_memory_bank
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.1
|
4
4
|
Summary: A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers.
|
5
|
-
Home-page: https://github.com/yourusername/mcp_sqlite_memory_bank
|
6
|
-
Author: Robert Meisner
|
7
5
|
Author-email: Robert Meisner <your-email@example.com>
|
8
6
|
License-Expression: MIT
|
7
|
+
Project-URL: Homepage, https://github.com/robertmeisner/mcp_sqlite_memory_bank
|
8
|
+
Project-URL: Source, https://github.com/robertmeisner/mcp_sqlite_memory_bank
|
9
|
+
Project-URL: Issues, https://github.com/robertmeisner/mcp_sqlite_memory_bank/issues
|
9
10
|
Classifier: Programming Language :: Python :: 3
|
10
11
|
Classifier: Operating System :: OS Independent
|
11
12
|
Requires-Python: >=3.8
|
@@ -21,7 +22,7 @@ Dynamic: license-file
|
|
21
22
|
# mcp_sqlite_memory_bank
|
22
23
|
|
23
24
|

|
24
|
-

|
25
26
|

|
26
27
|
|
27
28
|
## Overview
|
@@ -98,7 +99,7 @@ pip install mcp_sqlite_memory_bank
|
|
98
99
|
|
99
100
|
### Option 2: Clone and Install from Source (For Contributors)
|
100
101
|
```bash
|
101
|
-
git clone https://github.com/
|
102
|
+
git clone https://github.com/robertmeisner/mcp_sqlite_memory_bank.git
|
102
103
|
cd mcp_sqlite_memory_bank
|
103
104
|
pip install -e .
|
104
105
|
```
|
@@ -121,20 +122,20 @@ uvx run mcp_sqlite_memory_bank
|
|
121
122
|
uvx run mcp_sqlite_memory_bank@1.0.0
|
122
123
|
```
|
123
124
|
|
124
|
-
### Option 5: Docker (Containerized)
|
125
|
+
### Option 5: Docker (Containerized) # Coming soon - not yet implemented
|
125
126
|
```bash
|
126
127
|
# Pull the image
|
127
|
-
docker pull
|
128
|
+
docker pull robertmeisner/mcp_sqlite_memory_bank:latest
|
128
129
|
|
129
130
|
# Run with stdio transport (for Claude Desktop)
|
130
131
|
docker run -i --rm \
|
131
132
|
--mount type=bind,src=/path/to/data/dir,dst=/data \
|
132
|
-
|
133
|
+
robertmeisner/mcp_sqlite_memory_bank:latest stdio
|
133
134
|
|
134
|
-
# Run with HTTP transport (for API access)
|
135
|
+
# Run with HTTP transport (for API access)
|
135
136
|
docker run -p 8000:8000 --rm \
|
136
137
|
--mount type=bind,src=/path/to/data/dir,dst=/data \
|
137
|
-
|
138
|
+
robertmeisner/mcp_sqlite_memory_bank:latest http
|
138
139
|
```
|
139
140
|
|
140
141
|
### Transport Options
|
@@ -176,7 +177,7 @@ DB_PATH=./test.db
|
|
176
177
|
#### Quick Install
|
177
178
|
[Install with Python Module in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22python%22%2C%22args%22%3A%5B%22-m%22%2C%22mcp_sqlite_memory_bank%22%5D%7D)
|
178
179
|
|
179
|
-
[Install with Docker in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22-i%22%2C%22--rm%22%2C%22--mount%22%2C%22type%3Dbind%2Csrc%3D%24%7BworkspaceFolder%7D%2Cdst%3D%2Fdata%22%2C%
|
180
|
+
[Install with Docker in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=sqlite-memory&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22-i%22%2C%22--rm%22%2C%22--mount%22%2C%22type%3Dbind%2Csrc%3D%24%7BworkspaceFolder%7D%2Cdst%3D%2Fdata%22%2C%22robertmeisner%2Fmcp_sqlite_memory_bank%3Alatest%22%5D%7D)
|
180
181
|
|
181
182
|
#### Manual Configuration
|
182
183
|
|
@@ -233,7 +234,7 @@ Add to your `claude_desktop_config.json`:
|
|
233
234
|
"-i",
|
234
235
|
"--rm",
|
235
236
|
"--mount", "type=bind,src=/path/to/data/dir,dst=/data",
|
236
|
-
"
|
237
|
+
"robertmeisner/mcp_sqlite_memory_bank:latest"
|
237
238
|
],
|
238
239
|
"env": {
|
239
240
|
"DB_PATH": "/data/memory.db"
|
@@ -425,8 +426,8 @@ pytest --import-mode=importlib
|
|
425
426
|
|
426
427
|
## Support & Contact
|
427
428
|
|
428
|
-
- [GitHub Issues](https://github.com/
|
429
|
-
- [GitHub Discussions](https://github.com/
|
429
|
+
- [GitHub Issues](https://github.com/robertmeisner/mcp_sqlite_memory_bank/issues) — Bug reports & feature requests
|
430
|
+
- [GitHub Discussions](https://github.com/robertmeisner/mcp_sqlite_memory_bank/discussions) — Q&A and community support
|
430
431
|
- Email: your@email.com
|
431
432
|
|
432
433
|
---
|
@@ -1,27 +0,0 @@
|
|
1
|
-
[metadata]
|
2
|
-
name = mcp_sqlite_memory_bank
|
3
|
-
version = 0.1.0
|
4
|
-
description = A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers.
|
5
|
-
author = Robert Meisner
|
6
|
-
long_description = file: README.md
|
7
|
-
long_description_content_type = text/markdown
|
8
|
-
url = https://github.com/yourusername/mcp_sqlite_memory_bank
|
9
|
-
package_dir =
|
10
|
-
=src
|
11
|
-
packages = find:
|
12
|
-
python_requires = >=3.9
|
13
|
-
|
14
|
-
[options]
|
15
|
-
package_dir =
|
16
|
-
=src
|
17
|
-
packages = find:
|
18
|
-
python_requires = >=3.9
|
19
|
-
|
20
|
-
[options.packages.find]
|
21
|
-
where = src
|
22
|
-
exclude = *__pycache__*
|
23
|
-
|
24
|
-
[egg_info]
|
25
|
-
tag_build =
|
26
|
-
tag_date = 0
|
27
|
-
|
File without changes
|
File without changes
|
{mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/__init__.py
RENAMED
File without changes
|
{mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/py.typed
RENAMED
File without changes
|
{mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/server.py
RENAMED
File without changes
|
{mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/types.py
RENAMED
File without changes
|
{mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/utils.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|