Skip to content
Back to search
100
MCP live MCP 2025-06-18 streamable-http

Gnosem

dev.gnosem/gnosem

Cross-vendor AI memory over MCP. One semantic store, readable and writeable from every MCP client.

Uptime
100.0%
1 direct probes · 30d
Response
134ms
last probe
Tools
6
callable
Resources
0
readable
Prompts
0
available

Tools · 6

memory_write

Save a fact, preference, decision, or note to the user's cross-model memory. Any MCP client can read this back later. Include written_by (e.g. 'claude-code', 'gpt-5', 'kimi-k2') for provenance and ses…

memory_search

Search the user's memories. Default mode is 'hybrid': blends semantic (cosine over Vectorize) and keyword (BM25 over SQLite FTS5) hits via Reciprocal Rank Fusion (k=60). Semantic catches paraphrases; …

memory_list

List the user's most recent memories in reverse chronological order. Use for browsing or catching up on what the user's other model sessions have written recently. Same content/content_raw shape as me…

memory_forget

Soft-delete a memory by id. The row is retained for audit but excluded from search/list and removed from the vector index.

memory_supersede

Replace a stale memory with a corrected one. The old row is marked superseded and excluded from future reads; the new row becomes the current version. Use for corrections; use memory_forget for pure d…

memory_write_bulk

Write up to 50 memories in a single call. Each entry runs the same path as memory_write (semantic dedup by default; pass force:true per-entry to skip). Embeddings + optimizations run in parallel; D1 i…

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "gnosem": {
      "url": "https://gnosem.dev/mcp",
      "transport": "streamable-http"
    }
  }
}