mcp-sqlite-memory-bank 0.1.0__py3-none-any.whl → 0.1.1__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.
@@ -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
  ---
@@ -3,8 +3,8 @@ mcp_sqlite_memory_bank/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
3
3
  mcp_sqlite_memory_bank/server.py,sha256=kbdpF8axXj7X2Rj7NwDiGIAjOluZ-1d5uJHcuyoxksU,37839
4
4
  mcp_sqlite_memory_bank/types.py,sha256=gGteXWPKMKkOLlSe3CEpqEm-X-rEePCwfbXUaoY4YYU,4431
5
5
  mcp_sqlite_memory_bank/utils.py,sha256=dkgx7-GHruZhzWemOWXgUpZwD_UZo_a7a7zP9bB5YXU,6476
6
- mcp_sqlite_memory_bank-0.1.0.dist-info/licenses/LICENSE,sha256=KPr7eFgCJqQIjeSAcwRafbjcgm-10zkrJ7MFoTOGJQg,1092
7
- mcp_sqlite_memory_bank-0.1.0.dist-info/METADATA,sha256=e6rI8BM-pPb-6HTqrNQUu2EbAQC0AqGe6ejec2z-z8U,22875
8
- mcp_sqlite_memory_bank-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
9
- mcp_sqlite_memory_bank-0.1.0.dist-info/top_level.txt,sha256=xQ8MTGECpWMR-9DV4H8mMqaSoZqE-C8EvpOg9E2U1wM,23
10
- mcp_sqlite_memory_bank-0.1.0.dist-info/RECORD,,
6
+ mcp_sqlite_memory_bank-0.1.1.dist-info/licenses/LICENSE,sha256=KPr7eFgCJqQIjeSAcwRafbjcgm-10zkrJ7MFoTOGJQg,1092
7
+ mcp_sqlite_memory_bank-0.1.1.dist-info/METADATA,sha256=3ApIfPLvwaCrgFIy8ENr0cwCPzgSNvcsQ8BxlvZYE5o,23073
8
+ mcp_sqlite_memory_bank-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
9
+ mcp_sqlite_memory_bank-0.1.1.dist-info/top_level.txt,sha256=xQ8MTGECpWMR-9DV4H8mMqaSoZqE-C8EvpOg9E2U1wM,23
10
+ mcp_sqlite_memory_bank-0.1.1.dist-info/RECORD,,