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.
Files changed (19) hide show
  1. {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
  2. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/README.md +11 -11
  3. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/pyproject.toml +6 -1
  4. mcp_sqlite_memory_bank-0.1.1/setup.cfg +14 -0
  5. {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
  6. mcp_sqlite_memory_bank-0.1.0/setup.cfg +0 -27
  7. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/LICENSE +0 -0
  8. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/MANIFEST.in +0 -0
  9. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/__init__.py +0 -0
  10. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/py.typed +0 -0
  11. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/server.py +0 -0
  12. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/types.py +0 -0
  13. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/src/mcp_sqlite_memory_bank/utils.py +0 -0
  14. {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
  15. {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
  16. {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
  17. {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
  18. {mcp_sqlite_memory_bank-0.1.0 → mcp_sqlite_memory_bank-0.1.1}/tests/test_api.py +0 -0
  19. {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.0
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
  ![PyPI](https://img.shields.io/pypi/v/mcp_sqlite_memory_bank)
24
- ![CI](https://github.com/yourusername/mcp_sqlite_memory_bank/actions/workflows/ci.yml/badge.svg)
25
+ ![CI](https://github.com/robertmeisner/mcp_sqlite_memory_bank/actions/workflows/ci.yml/badge.svg)
25
26
  ![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
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/yourusername/mcp_sqlite_memory_bank.git
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 yourusername/mcp_sqlite_memory_bank:latest
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
- yourusername/mcp_sqlite_memory_bank:latest stdio
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
- yourusername/mcp_sqlite_memory_bank:latest http
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%22yourusername%2Fmcp_sqlite_memory_bank%3Alatest%22%5D%7D)
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
- "yourusername/mcp_sqlite_memory_bank:latest"
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/yourusername/mcp_sqlite_memory_bank/issues) — Bug reports & feature requests
429
- - [GitHub Discussions](https://github.com/yourusername/mcp_sqlite_memory_bank/discussions) — Q&A and community support
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
  ![PyPI](https://img.shields.io/pypi/v/mcp_sqlite_memory_bank)
4
- ![CI](https://github.com/yourusername/mcp_sqlite_memory_bank/actions/workflows/ci.yml/badge.svg)
4
+ ![CI](https://github.com/robertmeisner/mcp_sqlite_memory_bank/actions/workflows/ci.yml/badge.svg)
5
5
  ![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
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/yourusername/mcp_sqlite_memory_bank.git
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 yourusername/mcp_sqlite_memory_bank:latest
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
- yourusername/mcp_sqlite_memory_bank:latest stdio
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
- yourusername/mcp_sqlite_memory_bank:latest http
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%22yourusername%2Fmcp_sqlite_memory_bank%3Alatest%22%5D%7D)
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
- "yourusername/mcp_sqlite_memory_bank:latest"
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/yourusername/mcp_sqlite_memory_bank/issues) — Bug reports & feature requests
409
- - [GitHub Discussions](https://github.com/yourusername/mcp_sqlite_memory_bank/discussions) — Q&A and community support
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.0"
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"]
@@ -0,0 +1,14 @@
1
+ [options]
2
+ package_dir =
3
+ =src
4
+ packages = find:
5
+ python_requires = >=3.9
6
+
7
+ [options.packages.find]
8
+ where = src
9
+ exclude = *__pycache__*
10
+
11
+ [egg_info]
12
+ tag_build =
13
+ tag_date = 0
14
+
@@ -1,11 +1,12 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp_sqlite_memory_bank
3
- Version: 0.1.0
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
  ![PyPI](https://img.shields.io/pypi/v/mcp_sqlite_memory_bank)
24
- ![CI](https://github.com/yourusername/mcp_sqlite_memory_bank/actions/workflows/ci.yml/badge.svg)
25
+ ![CI](https://github.com/robertmeisner/mcp_sqlite_memory_bank/actions/workflows/ci.yml/badge.svg)
25
26
  ![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)
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/yourusername/mcp_sqlite_memory_bank.git
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 yourusername/mcp_sqlite_memory_bank:latest
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
- yourusername/mcp_sqlite_memory_bank:latest stdio
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
- yourusername/mcp_sqlite_memory_bank:latest http
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%22yourusername%2Fmcp_sqlite_memory_bank%3Alatest%22%5D%7D)
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
- "yourusername/mcp_sqlite_memory_bank:latest"
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/yourusername/mcp_sqlite_memory_bank/issues) — Bug reports & feature requests
429
- - [GitHub Discussions](https://github.com/yourusername/mcp_sqlite_memory_bank/discussions) — Q&A and community support
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
-