@mnhidayatgani/friday-mcp
v2.2.0
Published
FRIDAY AI Agent - MCP Server with Upstash integration and project intelligence
Maintainers
Readme
FRIDAY MCP Server
Professional AI Assistant with Tony Stark-level Intelligence
Personal AI agent with hybrid memory (Git + Upstash Redis), one-command project setup, and intelligent context awareness.
✨ Features
- 🚀 One-Command Setup -
#friday-setupinitializes everything - 🧠 Hybrid Memory - Git (structured) + Redis (fast global access)
- 🤖 Tony Stark Persona - Professional, proactive, precise
- 🔍 Smart Search - Relevance-based across all sources
- 📊 Auto-Detection - Identifies project type & tech stack
- 💾 Session Persistence - Never lose context
- 🌍 Always Available - Works offline with Git-only fallback
- 💰 100% FREE - Upstash free tier compatible
🚀 Quick Start
Installation
git clone https://github.com/angga13142/FRIDAY.git
cd friday-mcp-server
npm installThat's it! FRIDAY auto-configures everything.
- ✅ No manual setup needed
- ✅ No credentials required
- ✅ Works immediately (Git-only mode)
- ✅ Redis optional (add later if wanted)
VS Code Integration
Add to .vscode/settings.json or User Settings:
{
"mcp.servers": {
"friday": {
"command": "node",
"args": ["/absolute/path/to/friday-mcp-server/dist/index.js"]
}
}
}First Use
#friday-setupDone! FRIDAY is active and ready.
💡 What npm install Does
Automatic setup (no user input needed):
- ✅ Installs dependencies
- ✅ Builds project
- ✅ Creates
.env(Git-only mode) - ✅ Sets up memory structure
- ✅ Installs AI protocol
- ✅ Configures Git hooks
- ✅ Sets up VS Code
Total time: ~2 minutes
See FIRST-INSTALL.md for details.
🛠️ MCP Tools
| Tool | Description | Usage |
| ------------------ | --------------------------- | ----------------------- |
| friday-setup | One-command initialization | #friday-setup web |
| friday-search | Hybrid semantic search | #friday-search "auth" |
| friday-sync | Git → Redis synchronization | #friday-sync |
| friday-context | Load project context | #friday-context |
🧠 Hybrid Memory
Git Memory (Structured) Redis Memory (Fast)
├── INDEX.md ←─→ Session context
├── current-state.md ←─→ Semantic cache
├── implementations/ ←─→ Quick notes
├── decisions/ ←─→ Cross-project data
└── issues/Modes:
- Hybrid (Git + Redis) - When Upstash configured
- Git-only - Automatic fallback, no Redis needed
🧪 Testing
npm test # Run all 32 tests
npm run build # TypeScript compilation
npm run lint # Code quality checkTest Coverage: 32/32 passing ✅
📊 Architecture
FRIDAY MCP Server
├── Memory System
│ ├── GitMemoryManager (local structured docs)
│ ├── UpstashMemory (global fast cache)
│ └── HybridMemoryManager (intelligent fusion)
├── Tools (4 MCP tools)
├── Persona (Tony Stark AI)
└── Utils (auto-detection, config)🤖 FRIDAY Persona
Professional AI assistant inspired by Tony Stark's FRIDAY:
- ✅ Professional & respectful
- ✅ Proactive problem-solving
- ✅ Context-aware intelligence
- ✅ Clear status updates
- ✅ Tony Stark-level reliability
Example:
User: "Setup this project"
FRIDAY: "Understood, Sir. Initializing...
✅ Setup complete.
Project: my-app | Type: Web | Memory: Hybrid
FRIDAY is now active. How shall we proceed?"⚙️ Configuration
See DOCUMENTATION.md for complete configuration guide.
Quick Config:
# .env
UPSTASH_REDIS_REST_URL=https://...
UPSTASH_REDIS_REST_TOKEN=...
FRIDAY_MEMORY_CAPACITY=100📚 Documentation
🚀 Development
npm install # Install dependencies
npm run dev # Watch mode
npm test # Run tests
npm run build # Production build
npm start # Run built version💡 Use Cases
- 🏗️ New Projects - Instant setup with memory
- 🔍 Code Discovery - Find implementations fast
- 📝 Documentation - Auto-tracked decisions
- 🤝 Team Collaboration - Shared context via Redis
- 🧠 Context Preservation - Never lose project state
📈 Performance
- Setup: < 2s
- Search (Git): < 100ms
- Search (Hybrid): < 50ms
- Memory: < 50MB
🛡️ Security
- ✅ No secrets in memory files
- ✅ Redis credentials in
.env(gitignored) - ✅ Local-only execution
- ✅ Optional TLS encryption
📝 License
MIT - See LICENSE
🙏 Acknowledgments
Built with:
- @modelcontextprotocol/sdk
- @upstash/redis
- TypeScript, Jest, Node.js
FRIDAY - Your Professional AI Assistant
Always operational. Always reliable. Always ready.
Status: Production Ready ✅
Version: 1.0.0
Last Updated: November 8, 2025
🤖 AI Protocol - FRIDAY Memory System
IMPORTANT: Semua AI assistant (GitHub Copilot, Claude, ChatGPT) WAJIB mengikuti protocol ini!
Untuk AI: Quick Start Commands
# 1️⃣ Awal session (WAJIB)
#friday-context
# 2️⃣ Sebelum implementasi (WAJIB)
#friday-search "<topik>"
# 3️⃣ Setelah perubahan (WAJIB)
#friday-syncProtocol Rules
- Setup Check: Always verify FRIDAY is initialized
- Context Load: Load context at session start
- Memory Search: Search before implementing
- Document: Create memory files for changes
- Sync: Sync to Redis after changes
📖 Full Protocol: .github/copilot-instructions.md
