You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A high-performance, persistent memory system for the Model Context Protocol (MCP) powered by libSQL. This server provides vector search capabilities and efficient knowledge storage using libSQL as the backing store.
4
6
5
7
## Features
@@ -104,6 +106,27 @@ The server uses a libSQL database with the following schema:
104
106
- Relations table: Stores relationships between entities
105
107
- Vector search capabilities implemented using libSQL's built-in vector operations
106
108
109
+
## Development
110
+
111
+
### Publishing
112
+
113
+
Due to npm 2FA requirements, publishing needs to be done manually:
114
+
115
+
1. Create a changeset (documents your changes):
116
+
```bash
117
+
pnpm changeset
118
+
```
119
+
120
+
2. Version the package (updates version and CHANGELOG):
121
+
```bash
122
+
pnpm changeset version
123
+
```
124
+
125
+
3. Publish to npm (will prompt for 2FA code):
126
+
```bash
127
+
pnpm release
128
+
```
129
+
107
130
## Contributing
108
131
109
132
Contributions are welcome! Please read our contributing guidelines before submitting pull requests.
0 commit comments