
Research
/Security News
737 Chrome VPN Extensions Linked to Brand Impersonation and Browser Traffic Redirection
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.
@sovseal/mcp-server
Advanced tools
Local-first semantic memory MCP server for autonomous agents. On-device LanceDB + Transformers.js, write-behind replication.
Local-first, zero-knowledge semantic memory server for AI agents — speaks the Model Context Protocol. On-device LanceDB + Transformers.js. Write-behind ciphertext replication. 0 RTT reads.
npx -y @sovseal/mcp-server
Exposes two MCP tools to any MCP-compatible client (Claude Desktop, Cursor, Windsurf, Zed, custom agent loops):
| Tool | Args | Behavior |
|---|---|---|
store_memory | { content: string } | Embed (384-dim, on-device) → write local LanceDB → return. Ciphertext sync runs write-behind; nothing blocks. |
recall_memory | { query: string, topK?: number } | Embed query (LRU-cached) → vector search local LanceDB → top-K by L2 distance. 0 RTT. |
Add to mcp.json / claude_desktop_config.json / your client's MCP config:
{
"mcpServers": {
"sovseal-memory": {
"command": "npx",
"args": ["-y", "@sovseal/mcp-server"]
}
}
}
One-line install for Claude Code:
claude mcp add sovseal -- npx -y @sovseal/mcp-server
For always-on autonomous agents, run as a long-lived HTTP/SSE server:
SOVSEAL_TRANSPORT=sse SOVSEAL_PORT=4040 npx -y @sovseal/mcp-server
After installation the package exposes two equivalent binaries — mcp-server (default) and sovseal-mcp-server. Either invocation form works for explicit control:
npx -y --package=@sovseal/mcp-server mcp-server
# or
npx -y --package=@sovseal/mcp-server sovseal-mcp-server
~/.sovseal/config.json (mode 0600) — lose this file, lose every snapshotsha256(canonicalize(payload)) and fails closed on mismatch| Workload | Operation | p50 | p95 | p99 |
|---|---|---|---|---|
| 10K records · 1K queries | recall_memory (warm) | 6.1 ms | 10.4 ms | 21.8 ms |
| Single write | store_memory | 3.8 ms | 7.2 ms | 12.5 ms |
| First call | recall_memory (cold) | ~1.2 s | — | — |
All operations are 0 RTT — network is never on the read path.
Repository: github.com/sovseal/core
FAQs
Give Claude, Cursor, and every MCP client one shared memory that never leaves your machine. On-device embeddings, 10 ms recall, encrypted sync.
The npm package @sovseal/mcp-server receives a total of 201 weekly downloads. As such, @sovseal/mcp-server popularity was classified as not popular.
We found that @sovseal/mcp-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.