@utaba/deep-memory-local-mcp-server 0.16.1 → 0.17.0

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 (2) hide show
  1. package/README.md +3 -2
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -106,14 +106,15 @@ Environment variables passed via the MCP client's `env` block:
106
106
  | `DEEP_MEMORY_ACTOR_TYPE` | `agent` | Actor type: `agent`, `human`, or `system` |
107
107
  | `DEEP_MEMORY_STORAGE` | `memory` | `memory` (test only — wiped on restart) or `sqlserver` (recommended) |
108
108
  | `DEEP_MEMORY_SQL_HOST` | — | SQL Server hostname (when `DEEP_MEMORY_STORAGE=sqlserver`) |
109
- | `DEEP_MEMORY_SQL_PORT` | `1433` | SQL Server port |
109
+ | `DEEP_MEMORY_SQL_PORT` | `1433` | SQL Server port. The bundled `docker-compose.yml` publishes the container on host port **1435** (to avoid clashing with any local SQL install on the default 1433); use `1435` for that path. For a different SQL Server instance, check the port that instance is listening on. |
110
110
  | `DEEP_MEMORY_SQL_DATABASE` | — | Database name |
111
111
  | `DEEP_MEMORY_SQL_USER` | — | SQL Server username |
112
112
  | `DEEP_MEMORY_SQL_PASSWORD` | — | SQL Server password |
113
113
  | `DEEP_MEMORY_SQL_SCHEMA` | `dbo` | SQL Server schema |
114
114
  | `DEEP_MEMORY_SQL_TRUST_CERT` | `false` | Trust self-signed certificates (set `true` for local Docker) |
115
- | `DEEP_MEMORY_EMBEDDINGS_BASE_URL` | — | Embeddings API URL (enables semantic search) |
115
+ | `DEEP_MEMORY_EMBEDDINGS_BASE_URL` | — | Embeddings API URL (enables semantic search). See [quickstart-embeddings.md](https://github.com/TjWheeler/deep-memory/blob/main/quickstart-embeddings.md) for provider-specific recipes. |
116
116
  | `DEEP_MEMORY_EMBEDDINGS_MODEL` | — | Embeddings model identifier |
117
+ | `DEEP_MEMORY_EMBEDDINGS_DIMENSIONS` | auto-detected | Embedding vector dimensionality. Set only when the model supports configurable dimensions (e.g. OpenAI `text-embedding-3-*`). |
117
118
  | `DEEP_MEMORY_EMBEDDINGS_API_KEY` | — | API key for authenticated embeddings endpoints |
118
119
 
119
120
  ## Programmatic use
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utaba/deep-memory-local-mcp-server",
3
- "version": "0.16.1",
3
+ "version": "0.17.0",
4
4
  "description": "Local MCP server exposing @utaba/deep-memory as tools for AI agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -48,10 +48,10 @@
48
48
  ],
49
49
  "dependencies": {
50
50
  "@modelcontextprotocol/sdk": "^1.28.0",
51
- "@utaba/deep-memory": "0.16.0",
52
- "@utaba/deep-memory-embeddings-openai": "0.16.0",
53
- "@utaba/deep-memory-storage-cosmosdb": "0.16.0",
54
- "@utaba/deep-memory-storage-sqlserver": "0.16.0"
51
+ "@utaba/deep-memory": "0.17.0",
52
+ "@utaba/deep-memory-storage-cosmosdb": "0.17.0",
53
+ "@utaba/deep-memory-storage-sqlserver": "0.17.0",
54
+ "@utaba/deep-memory-embeddings-openai": "0.17.0"
55
55
  },
56
56
  "devDependencies": {
57
57
  "@types/node": "^22.0.0",