mcp-sqlite-memory-bank 1.1.0__tar.gz → 1.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-1.1.0/src/mcp_sqlite_memory_bank.egg-info → mcp_sqlite_memory_bank-1.1.1}/PKG-INFO +24 -25
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/README.md +23 -24
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/pyproject.toml +1 -1
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1/src/mcp_sqlite_memory_bank.egg-info}/PKG-INFO +24 -25
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/LICENSE +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/MANIFEST.in +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/setup.cfg +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/__init__.py +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/py.typed +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/server.py +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/types.py +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/utils.py +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank.egg-info/SOURCES.txt +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank.egg-info/dependency_links.txt +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank.egg-info/requires.txt +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank.egg-info/top_level.txt +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/tests/test_api.py +0 -0
- {mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/tests/test_server.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp_sqlite_memory_bank
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.1
|
4
4
|
Summary: A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers.
|
5
5
|
Author-email: Robert Meisner <robert@catchit.pl>
|
6
6
|
License-Expression: MIT
|
@@ -19,30 +19,6 @@ Provides-Extra: test
|
|
19
19
|
Requires-Dist: pytest; extra == "test"
|
20
20
|
Dynamic: license-file
|
21
21
|
|
22
|
-
## Development Setup
|
23
|
-
|
24
|
-
To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
|
25
|
-
|
26
|
-
**Install development dependencies:**
|
27
|
-
|
28
|
-
```sh
|
29
|
-
pip install -r requirements.txt
|
30
|
-
```
|
31
|
-
|
32
|
-
**Enable pre-commit hooks (recommended):**
|
33
|
-
|
34
|
-
```sh
|
35
|
-
pre-commit install
|
36
|
-
```
|
37
|
-
|
38
|
-
This will automatically run `flake8` on staged files before every commit. To manually check all files:
|
39
|
-
|
40
|
-
```sh
|
41
|
-
pre-commit run --all-files
|
42
|
-
```
|
43
|
-
|
44
|
-
If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
|
45
|
-
|
46
22
|
# mcp_sqlite_memory_bank
|
47
23
|
|
48
24
|

|
@@ -447,6 +423,29 @@ pytest --import-mode=importlib
|
|
447
423
|
|
448
424
|
---
|
449
425
|
|
426
|
+
## Development Setup
|
427
|
+
|
428
|
+
To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
|
429
|
+
|
430
|
+
**Install development dependencies:**
|
431
|
+
|
432
|
+
```sh
|
433
|
+
pip install -r requirements.txt
|
434
|
+
```
|
435
|
+
|
436
|
+
**Enable pre-commit hooks (recommended):**
|
437
|
+
|
438
|
+
```sh
|
439
|
+
pre-commit install
|
440
|
+
```
|
441
|
+
|
442
|
+
This will automatically run `flake8` on staged files before every commit. To manually check all files:
|
443
|
+
|
444
|
+
```sh
|
445
|
+
pre-commit run --all-files
|
446
|
+
```
|
447
|
+
|
448
|
+
If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
|
450
449
|
|
451
450
|
## Support & Contact
|
452
451
|
|
@@ -1,27 +1,3 @@
|
|
1
|
-
## Development Setup
|
2
|
-
|
3
|
-
To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
|
4
|
-
|
5
|
-
**Install development dependencies:**
|
6
|
-
|
7
|
-
```sh
|
8
|
-
pip install -r requirements.txt
|
9
|
-
```
|
10
|
-
|
11
|
-
**Enable pre-commit hooks (recommended):**
|
12
|
-
|
13
|
-
```sh
|
14
|
-
pre-commit install
|
15
|
-
```
|
16
|
-
|
17
|
-
This will automatically run `flake8` on staged files before every commit. To manually check all files:
|
18
|
-
|
19
|
-
```sh
|
20
|
-
pre-commit run --all-files
|
21
|
-
```
|
22
|
-
|
23
|
-
If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
|
24
|
-
|
25
1
|
# mcp_sqlite_memory_bank
|
26
2
|
|
27
3
|

|
@@ -426,6 +402,29 @@ pytest --import-mode=importlib
|
|
426
402
|
|
427
403
|
---
|
428
404
|
|
405
|
+
## Development Setup
|
406
|
+
|
407
|
+
To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
|
408
|
+
|
409
|
+
**Install development dependencies:**
|
410
|
+
|
411
|
+
```sh
|
412
|
+
pip install -r requirements.txt
|
413
|
+
```
|
414
|
+
|
415
|
+
**Enable pre-commit hooks (recommended):**
|
416
|
+
|
417
|
+
```sh
|
418
|
+
pre-commit install
|
419
|
+
```
|
420
|
+
|
421
|
+
This will automatically run `flake8` on staged files before every commit. To manually check all files:
|
422
|
+
|
423
|
+
```sh
|
424
|
+
pre-commit run --all-files
|
425
|
+
```
|
426
|
+
|
427
|
+
If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
|
429
428
|
|
430
429
|
## Support & Contact
|
431
430
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "mcp_sqlite_memory_bank"
|
7
|
-
version = "1.1.
|
7
|
+
version = "1.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="robert@catchit.pl" }
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp_sqlite_memory_bank
|
3
|
-
Version: 1.1.
|
3
|
+
Version: 1.1.1
|
4
4
|
Summary: A dynamic, agent/LLM-friendly SQLite memory bank for MCP servers.
|
5
5
|
Author-email: Robert Meisner <robert@catchit.pl>
|
6
6
|
License-Expression: MIT
|
@@ -19,30 +19,6 @@ Provides-Extra: test
|
|
19
19
|
Requires-Dist: pytest; extra == "test"
|
20
20
|
Dynamic: license-file
|
21
21
|
|
22
|
-
## Development Setup
|
23
|
-
|
24
|
-
To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
|
25
|
-
|
26
|
-
**Install development dependencies:**
|
27
|
-
|
28
|
-
```sh
|
29
|
-
pip install -r requirements.txt
|
30
|
-
```
|
31
|
-
|
32
|
-
**Enable pre-commit hooks (recommended):**
|
33
|
-
|
34
|
-
```sh
|
35
|
-
pre-commit install
|
36
|
-
```
|
37
|
-
|
38
|
-
This will automatically run `flake8` on staged files before every commit. To manually check all files:
|
39
|
-
|
40
|
-
```sh
|
41
|
-
pre-commit run --all-files
|
42
|
-
```
|
43
|
-
|
44
|
-
If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
|
45
|
-
|
46
22
|
# mcp_sqlite_memory_bank
|
47
23
|
|
48
24
|

|
@@ -447,6 +423,29 @@ pytest --import-mode=importlib
|
|
447
423
|
|
448
424
|
---
|
449
425
|
|
426
|
+
## Development Setup
|
427
|
+
|
428
|
+
To ensure code quality and consistent style, this project uses `flake8` and `pre-commit` hooks.
|
429
|
+
|
430
|
+
**Install development dependencies:**
|
431
|
+
|
432
|
+
```sh
|
433
|
+
pip install -r requirements.txt
|
434
|
+
```
|
435
|
+
|
436
|
+
**Enable pre-commit hooks (recommended):**
|
437
|
+
|
438
|
+
```sh
|
439
|
+
pre-commit install
|
440
|
+
```
|
441
|
+
|
442
|
+
This will automatically run `flake8` on staged files before every commit. To manually check all files:
|
443
|
+
|
444
|
+
```sh
|
445
|
+
pre-commit run --all-files
|
446
|
+
```
|
447
|
+
|
448
|
+
If you see lint errors, fix them before committing. You can configure linting rules in the `.flake8` file.
|
450
449
|
|
451
450
|
## Support & Contact
|
452
451
|
|
File without changes
|
File without changes
|
File without changes
|
{mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/__init__.py
RENAMED
File without changes
|
{mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/py.typed
RENAMED
File without changes
|
{mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/server.py
RENAMED
File without changes
|
{mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.1.1}/src/mcp_sqlite_memory_bank/types.py
RENAMED
File without changes
|
{mcp_sqlite_memory_bank-1.1.0 → mcp_sqlite_memory_bank-1.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
|