Skip to main content
Glama

Never Ask Twice

Never Ask Twice

Support that remembers.

Enterprise Support MemoryAgent on Qwen Cloud

CI License: Apache-2.0 TypeScript Runtime Cloud Model Memory MCP

Live demo: neverasktwice.dev — try /chat, or hit /health directly.

Customers don't want a smarter chatbot if they still have to repeat their SLA, setup, open issue, and escalation contact every time they come back.

Never Ask Twice is a production-shaped B2B support memory agent that remembers customer context across sessions, retrieves only the memories that matter, forgets stale facts safely, and proves improvement with a deterministic memory ON/OFF evaluation harness plus a live Qwen-backed API path.

The demo agent is Nat. Nat is powered by NATE — the Never Ask Twice Engine — a scoped memory layer that turns support conversations into durable, auditable customer context.

Built for the Qwen Cloud Global AI Hackathon — Track: MemoryAgent.

Brand assets

Official logo files and usage rules live in docs/assets/brand. The public tagline is Support that remembers. Descriptor: Enterprise Support MemoryAgent.

Related MCP server: Memsolus MCP Server

Status

Area

Status

Notes

Public clean-room repo

Done

Synthetic data only; boundary scan included.

Local Postgres + pgvector setup

Done

docker compose up -d binds Postgres on localhost:5433.

Deterministic eval harness

Done

pnpm eval prints memory ON/OFF re-ask and recall metrics.

Memory service

Done

Working, episodic, semantic, forgetting, and budgeted recall paths are implemented.

MCP stdio surface

Done

Four memory tools are exposed through pnpm mcp:list-tools.

Qwen-backed live path

Done

Live on Railway with DASHSCOPE_API_KEY set; /health reports mode: "qwen-live".

Railway deployment (primary live URL)

Done

neverasktwice.dev — Neon-backed, turn → close → recall cycle verified end-to-end. See deploy/railway.md.

Alibaba Function Compute deployment

Live

Deployed and serving live Qwen + Postgres. Verify with curl https://never-awice-api-kvsvpczulb.us-east-1.fcapp.run/health. Note: Alibaba forces Content-Disposition: attachment on the default *.fcapp.run domain, so a browser downloads the response instead of rendering it — that is the platform's policy for the free subdomain, not a broken deploy. Verify by curl. See deploy/alibaba-fc.md.

Demo video

Done

Watch the demo — frozen Acme scenario with eval output.

Build log

Done

Building customer support memory that survives an audit

Judge path

  1. Try the live deployment: neverasktwice.dev/chat for the UI, /health for capability status.

  2. Read the memory model: docs/memory-model.md.

  3. Run the ablation:

    pnpm eval
  4. Inspect the forgetting behavior: docs/forgetting-policy.md.

  5. Read the system architecture: docs/architecture.md.

  6. List MCP tools:

    pnpm build
    pnpm mcp:list-tools
  7. Review deployment proof: deploy/alibaba-fc.md (Alibaba FC, live) and deploy/railway.md (Railway, live — serves the browsable UI).

  8. Read the build log: Building customer support memory that survives an audit.

  9. Watch the demo: https://youtu.be/P254DPj-Mgw.

The measurable result

Run:

pnpm eval

Expected deterministic fixture output:

memory-on re-ask rate: 0.00
memory-on recall accuracy: 1.00
memory-off re-ask rate: 1.00
memory-off recall accuracy: 0.00
re-ask rate: 0.00 (memory) vs 1.00 (no-memory)

The evaluation path is intentionally deterministic for reproducible scoring. It uses fixed synthetic fixtures and a fake Qwen client. The live API path uses Qwen Cloud when DASHSCOPE_API_KEY is configured.

What makes it a MemoryAgent

Never Ask Twice implements explicit memory tiers:

  • Working memory — current-session context usable before session-close distillation.

  • Episodic memory — raw support events with Qwen embeddings and provenance.

  • Semantic memory — distilled customer facts with confidence, validity windows, and source links.

  • Forgetting policy — TTL expiry, supersession, stale-memory exclusion, and audit-safe provenance.

  • Budgeted recall — relevant memories only, capped to a strict context budget.

  • MCP surface — memory tools exposed for agent interoperability.

This is not transcript logging. It is structured memory with retrieval discipline, provenance, forgetting, and measurable cross-session improvement.

Architecture

Customer chat / MCP
        |
        v
Hono API (same code, two deploy targets:
           Alibaba FC - live | Railway - live, serves browsable UI)
        |
        v
MemoryService
  |-- working memory: current-session facts
  |-- episodic memory: turn events + Qwen embeddings
  |-- semantic memory: distilled durable facts
  |-- forgetting: TTL + supersession + scoped recall
        |
        +--> Qwen Cloud via DashScope-compatible OpenAI API
        +--> Neon Postgres + pgvector
        +--> MCP stdio tools

Full diagram and component map: docs/architecture.md.

Getting started

1. Clone and install

git clone https://github.com/marcelle-labs/never-ask-twice.git
cd never-ask-twice
pnpm install

2. Configure environment

cp .env.example .env

Edit .env and set your DASHSCOPE_API_KEY from DashScope for live Qwen-backed embeddings, distillation, and adjudication. The example is pre-filled for local Postgres on port 5433.

DATABASE_URL=postgresql://neverasktwice:neverasktwice@localhost:5433/neverasktwice
DASHSCOPE_API_KEY=your-key-here
QWEN_BASE_URL=https://dashscope-intl.aliyuncs.com/compatible-mode/v1
QWEN_CHAT_MODEL=qwen-plus
QWEN_EMBEDDING_MODEL=text-embedding-v3
QWEN_EMBEDDING_DIM=1024
MEMORY_TOKEN_BUDGET=1200

Without DASHSCOPE_API_KEY, the API boots in local-safe mode. Local-safe mode uses zero-vector embeddings and empty distillation responses so the server can run without secrets; it does not perform real Qwen work. Use pnpm eval for deterministic local scoring without a key.

3. Start Postgres

docker compose up -d

The local database binds to localhost:5433 so it does not collide with other Postgres services on 5432.

4. Run migrations

pnpm migrate

5. Run the eval harness

pnpm eval

6. Run the boundary scan

pnpm boundary-scan

7. Start the local API

pnpm dev

The API will be available at http://localhost:3000 with endpoints:

  • GET /health — health and capability status.

  • POST /turn — append a customer/agent turn.

  • POST /sessions/:id/close — close a session and distill episodic memory into semantic memory.

  • POST /recall — recall a bounded memory bundle.

8. Run the MCP server

pnpm build
node dist/src/mcp/server.js

The MCP server exposes four tools: recall_memory, write_memory, distill_session, and forget.

Project structure

  • apps/api — Hono API, local server, and Function Compute handler. Deploy-target-agnostic; live on both Alibaba FC and Railway.

  • src/agent — deterministic support-agent policy used by the eval harness.

  • src/contracts.ts — memory predicate enum, Zod contracts, and shared types.

  • src/db — Drizzle schema and SQL migration string.

  • src/memory — memory service, stores, retrieval, supersession, and forgetting behavior.

  • src/mcp — stdio MCP surface over the shared memory service.

  • src/qwen — single Qwen Cloud client module.

  • src/testing — deterministic fake Qwen client for the eval harness.

  • eval — frozen three-session scenario, ground truth, expected output, and runner.

  • scripts — boundary scan, migration, MCP list-tools, and demo script checks.

  • docs — judge-facing architecture, memory model, evaluation, and forgetting documentation.

  • deploy — Alibaba Function Compute deployment proof (live) and Railway deployment proof (live).

Key commands

Command

Purpose

pnpm install

Install dependencies

pnpm build

Build the project

pnpm lint

Run TypeScript type check

pnpm test

Run the test suite

pnpm eval

Run the deterministic memory ON/OFF eval harness

pnpm migrate

Run database migrations

pnpm boundary-scan

Run the clean-room boundary scan

pnpm mcp:list-tools

List the MCP tools

pnpm demo:script-check

Verify demo fixtures are aligned

Security and clean-room boundary

Never Ask Twice uses synthetic data only. Do not commit real customer data, secrets, .env files, or private platform identifiers. The repository includes a boundary scan to fail on known forbidden tokens and a local-safe mode so judges can run the server without secrets.

See SECURITY.md.

License

Apache-2.0

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    Provides AI agents with persistent, searchable memory that survives across conversations using semantic search, temporal versioning, and smart organization. Enables long-term context retention and cross-session continuity for AI assistants.
    14
  • A
    license
    A
    quality
    D
    maintenance
    Provides persistent long-term memory for AI agents through semantic search and automated knowledge graph extraction. It enables agents to store, recall, and reason over facts, preferences, and relationships across multiple conversations and sessions.
    14
    8
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    A production-grade persistent memory service for AI agents. Agents forget everything between sessions by default — memex fixes that. It stores, retrieves, and ranks conversation memory using semantic search with recency decay, so agents surface what's relevant and recent, not just what's semantically closest.
    4
    1
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Provides persistent, cross-session memory for AI agents, allowing them to store and automatically retrieve information across different conversations and sessions without repeating context.
    7
    175
    MIT

View all related MCP servers

Related MCP Connectors

  • Hosted memory for AI agents that learns and forgets — one key across Claude, Cursor & ChatGPT.

  • Persistent memory for AI agents — verbatim conversations, searchable by meaning.

  • Universal memory for AI agents and tools. Save, organize and search context anywhere.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Marcelle-Labs/never-ask-twice'

If you have feedback or need assistance with the MCP directory API, please join our Discord server