1. Conduid
  2. Developer Tools
  3. F.R.I.D.A.Y
MCP server · Developer Tools

F.R.I.D.A.Y

Fully Responsive Intelligent Digital Assistant for You. Voice-first AI assistant with persistent semantic memory — built on LiveKit + FastMCP

Unclaimed devtools
34Low

Scored 4 months ago · breakdown

About F.R.I.D.A.Y

F.R.I.D.A.Y is an MCP server in the Developer Tools category: fully Responsive Intelligent Digital Assistant for You. Voice-first AI assistant with persistent semantic memory — built on LiveKit + FastMCP. It has been installed 0 times through Conduid.

Install

Clone
git clone https://github.com/architaggarwal24/F.R.I.D.A.Y

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about F.R.I.D.A.Y

Powered by Claude · Grounded in docs

I know everything about F.R.I.D.A.Y. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

F.R.I.D.A.Y.

Fully Responsive Intelligent Digital Assistant for You

"I've dated holograms with more substance than this, but sure, let's give it a shot."

F.R.I.D.A.Y. is a voice-first AI assistant built on a LiveKit pipeline with a FastMCP backend. She reasons via Google Gemini 2.5 Flash, speaks via the nova TTS voice, and now — she remembers.


What's in this repo

This repository contains the Memory System — the first major capability module beyond the base demo.

Module Description
friday/tools/memory.py Three MCP tools: remember, recall, forget
friday/agent.py Voice turn handler with silent auto-recall injection
tests/test_memory.py 14 unit tests covering all memory tools
tests/test_memory_e2e.py End-to-end 4-turn session simulation

How the Memory System Works

On every voice turn, F.R.I.D.A.Y. silently calls recall() with the user's utterance and injects relevant memories into the system prompt — before the LLM ever sees the input. Boss never has to say "remember what I told you."

Boss says something
        ↓
recall(utterance, limit=3)       ← semantic search, silent
        ↓
Relevant memories found?
  YES → prepend to system prompt
  NO  → continue unchanged
        ↓
LLM generates response with full context

The three tools

remember(content, category)   # stores a memory with embedding + dedup check
recall(query, limit)          # semantic search — returns most relevant memories
forget(memory_id)             # deletes a memory by ID

Storage

  • Backend: ChromaDB (local, persistent, embedded — no external server)
  • Embeddings: sentence-transformers/all-MiniLM-L6-v2 (local, free, fast)
  • Deduplication: Cosine similarity threshold at 0.97 — near-identical memories are rejected
  • Noise floor: Recall filters results below 0.3 relevance score
  • Persistence: Survives process restarts — memories live on disk at friday/memory/chroma_store/

Tech Stack

Layer Tech
Voice pipeline LiveKit
Tool server FastMCP
LLM Google Gemini 2.5 Flash
TTS nova voice
Vector store ChromaDB (persistent)
Embeddings sentence-transformers / all-MiniLM-L6-v2
Tests pytest + pytest-asyncio

Project Structure

F.R.I.D.A.Y/
├── friday/
│   ├── agent.py                  # Voice turn handler + auto-recall hook
│   ├── tools/
│   │   └── memory.py             # remember / recall / forget MCP tools
│   └── memory/
│       └── chroma_store/         # Runtime only — created on first run, gitignored
├── tests/
│   ├── test_memory.py            # Unit tests
│   └── test_memory_e2e.py        # End-to-end session tests
├── requirements.txt
├── CLAUDE.md                     # Claude Code guidance
├── SETUP.md                      # Setup & run instructions
└── README.md

Test Results

18 passed in ~105s
tests/test_memory.py         14 passed   ← unit tests
tests/test_memory_e2e.py      4 passed   ← e2e session simulation

Roadmap

  • get_calendar + set_reminder — act on reminders, not just store them
  • Chained tool reasoning — recallsearch_web in one autonomous turn
  • Voice persona tuning — tighter response formatting for nova TTS
  • Memory dashboard — view, edit, and delete what F.R.I.D.A.Y. knows

License

MIT

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About F.R.I.D.A.Y

How do I install F.R.I.D.A.Y?

Run git clone https://github.com/architaggarwal24/F.R.I.D.A.Y, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is F.R.I.D.A.Y safe to use with an AI agent?

Its trust score is 34 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is F.R.I.D.A.Y still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.