Your AI finally has a memory.
Connect Torqon to Claude, Cursor, or Windsurf and it remembers your projects, decisions, and tech stack across every conversation. No more repeating yourself. No more lost context.
Works inside the tools you already use
Claude Desktop

Cursor
Claude Code

Windsurf
VS Code

Zed

Cline
Continue
As conversations grow, critical context is lost, token budgets fill with noise, and the model forgets what matters.
Every message triggers a precise pipeline: extract, embed, retrieve. Zero config. Runs before your model sees a single token.
Torqon parses each message to classify intent (store / retrieve / both) and extracts atomic facts: the smallest independently meaningful units of knowledge. "I'm building a Next.js app with pgvector on Railway" yields three distinct facts, not one blob.
async, adds <2ms to your pipelineEach fact is independently embedded into a 1536-dimensional vector. When a new fact contradicts an old one (e.g. stack change), the previous embedding is marked is_current_fact = false. Stale data never resurfaces in retrieval.
Before your prompt reaches the model, Torqon runs a cosine similarity query against your fact store, deduplicates results, scores by recency and confidence, and assembles the top-k into a structured block injected into your system prompt.
p95 retrieval: <8ms end-to-end// Add Torqon to your Claude Desktop MCP server list { "mcpServers": { "torqon": { "command": "npx", "args": ["-y", "@torqon/mcp@latest"], "env": { "TORQON_API_KEY": "tq_live_••••••••••••••••" } } } } // From that point, Claude stores and retrieves facts automatically. // No prompting, no wrappers, no SDK to install.
Torqon doesn't store chat history. It extracts the minimal unit of knowledge that is independently reusable, and indexes each one separately so retrieval stays precise even across thousands of facts.
The canonical name of the active project. Used to namespace all other facts and scope retrieval so facts from different projects never bleed into each other.
Technologies, frameworks, databases in use. Stored as individual embeddings per technology so changing one item supersedes only that item, not the whole array.
Active objectives and milestones. When a goal is completed or changed, Torqon marks the old fact superseded and stores the new state with a higher confidence score.
Working constraints and style rules. Preferences have elevated retrieval priority because violating them wastes entire sessions and erodes trust in the AI assistant.
Architectural decisions with their rationale. Prevents relitigating solved problems. Stored with a finality score that influences how aggressively Torqon will counter contradicting instructions.
Background knowledge that shapes how responses should be framed. Influences assumed expertise level, explanation depth, and code verbosity in every reply, across all sessions.
A single pgvector cosine query fetches semantically similar facts in under 8ms. The result is scored, ranked, and trimmed to your token budget before it touches the system prompt.
SELECT id, content, fact_type, 1 - (embedding <=> $1) AS similarity FROM facts WHERE user_id = $2 AND is_current_fact = true AND 1 - (embedding <=> $1) > 0.72 ORDER BY similarity DESC LIMIT 12;
Cosine similarity floor. Facts below this threshold are never surfaced, no matter how many relevant facts exist.
Superseded facts are soft-deleted via this flag, not physically removed, so you get a full audit trail and can replay any historical state.
Results are trimmed from the bottom up to fit within your configured token budget before assembly. Higher-similarity facts always survive the cut.
Torqon is a memory infrastructure layer for LLM applications. We give AI assistants persistent, retrievable memory so they can hold context across long conversations without burning your token budget.
We're a small, focused team. We're building the infrastructure layer that makes AI assistants actually useful for day-to-day development work.
Get in touchGive your AI assistant persistent memory in minutes. Free to start. No credit card required.
Connect via MCP and start remembering. No credit card required.