mcp-integrated-ai-assistant
Enables searching YouTube videos using the YouTube Data API v3, returning video details and metadata.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-integrated-ai-assistantPlan a 3-day trip to Paris from London"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AI Assistant — Merged Project (Chrono + AI-MCP-ASSISTANT)
Merge notes (read this first)
This project is the result of merging two separate projects into one app:
fastmcp_ai_assistant_updated("Chrono") — the base of this merge. Clock, stopwatch, alarms, reminders, sign-in/sign-up, email notifications, profile management, and product-price comparison.AI-MCP-ASSISTANT("mcp-assistant") — contributed three tools that didn't exist in Chrono, now merged into this codebase:YouTube search (
tools/youtube_tool.py) — YouTube Data API v3.AI trip planner (
tools/trip_planner_tool.py+tools/serp_service.py) — real flights/hotels/places via SerpAPI, formatted into a day-wise itinerary by Groq.Notes (
tools/notes_tool.py) — add / delete / list / summarize (summarization via Groq), using this project's existingsqlite3+server/utils.connect_dbpattern, so no new DB dependency was added.
Search: the merged app keeps Chrono's SerpAPI-based google_search
(tools/search_tool.py) as the one and only search tool. AI-MCP-ASSISTANT's
DuckDuckGo-based search (ddgs library) was not carried over, to avoid
having two different, inconsistent search implementations side by side.
What was intentionally left behind / not merged, to keep a single, consistent architecture instead of running two backends side by side:
AI-MCP-ASSISTANT's separate Node/Express backend and Flask API (
backend/server.js,server/api.py) — this project already has a single FastAPI backend (server/api_server.py) that both the React frontend and the FastMCP tool server call into; the new tools were added there instead of standing up a second backend stack.AI-MCP-ASSISTANT's Gemini-based MCP Host/Client CLI (
host/main.py,client/mcp_client.py) — this project's ownserver/server.py(FastMCP) already serves the same purpose (exposing tools to any MCP-speaking LLM client), just with a different LLM/client pattern (Groq for trip-planner/notes formatting instead of Gemini for tool-selection). The new tools were added as@mcp.tool()s there.The "History" activity-feed page/table from AI-MCP-ASSISTANT was replaced by this project's existing per-feature history tables in
database/history.db(search_history, plus newyoutube_historyandtrip_historytables added during the merge).
Related MCP server: mcp-web-calc
1. Features at a glance
Area | What it does |
Clock | Live clock card. Tapping it opens a slide-in sidebar with Stopwatch and Alarm (they're intentionally not in the top ribbon — see below). |
News panel | Sits right under the clock card. Shows today's top headlines (NewsAPI, with an automatic Google News RSS fallback that needs no API key). |
Stopwatch / Alarm | Live only inside the clock's sidebar now — custom ringtones, repeat, weekdays, snooze. |
Reminders | Title/description/date/time, "notify" options, full-screen alert + email when due. |
Sign up / Sign in / Forgot password | Email+password auth (PBKDF2 hashed). Forgot-password verifies identity via name+email match (no OTP system), then lets you set a new password. |
Profile (Settings → Edit profile) | GET current profile, PUT to edit name/email/password, DELETE with two modes: soft (status flips to |
Search | SerpAPI-backed web search. |
Compare | Two-product side-by-side price comparison (SerpAPI). |
YouTube | Search YouTube videos (YouTube Data API v3). |
Trip planner | Origin/destination/days → real flights/hotels/places (SerpAPI) formatted into an itinerary (Groq). |
Notes | Add / list / delete / AI-summarize notes (Groq). |
About | Header button (top-right, next to your name) — project summary. |
Settings | Account info, "Edit profile" (opens the Profile modal), sign out, and a Send test email button to verify email delivery instantly. |
Header / navigation layout
The top ribbon tabs are: Clock · Reminder · Search · Compare · YouTube · Trip planner · Notes · Settings. Stopwatch and Alarm are not ribbon
tabs — they live inside the sidebar opened by tapping the clock. About
is a small button in the top-right corner of the header, next to your
signed-in name. Profile is not a ribbon tab either — it opens as a
modal from the Settings tab ("Edit profile" button).
2. Backend setup
# from the project root
python -m venv venv
venv\Scripts\activate # Windows
# source venv/bin/activate # macOS/Linux
pip install -r requirements.txt
# create/upgrade the sqlite databases (safe to re-run any time)
python server/init_db.pyNo new pip packages were needed for sign-in — it uses only Python's
standard library (hashlib, secrets).
.env file (project root)
There's no checked-in .env.example in this copy of the project — create a
plain text file named .env in the project root yourself with the
variables below (only fill in the ones for features you want working;
everything else degrades gracefully instead of crashing):
# ---- Search / price comparison ----
SERPAPI_KEY=your_serpapi_key
# ---- YouTube search ----
YOUTUBE_API_KEY=your_youtube_data_api_v3_key
# ---- Trip planner itinerary + notes summarization ----
GROQ_API_KEY=your_groq_key
# ---- News under the clock (optional - falls back to Google News RSS,
# which needs no key at all, if this is left blank) ----
NEWSAPI_KEY=
NEWS_COUNTRY=in
# ---- Email: configure Resend AND/OR SMTP - see note below ----
RESEND_API_KEY=re_your_key_here
RESEND_FROM_EMAIL=onboarding@resend.dev
SMTP_HOST=smtp.gmail.com
SMTP_PORT=465
SMTP_USER=your_email@gmail.com
SMTP_PASSWORD=your_16_character_app_password
SMTP_FROM_NAME=Chrono AssistantHow email backend selection actually works (server/email_service.py):
Resend is tried first (it sends over plain HTTPS/443, so it works even on
networks that block SMTP ports). On Resend's free tier without a verified
domain, Resend only delivers to the address you personally signed up to
Resend with — every other recipient gets a 403 "testing mode" rejection.
When that specific rejection happens and SMTP is also configured, the
code automatically retries that email via SMTP instead — so if you want
every signed-up user to get alerts at their own inbox (not just yours),
configure both, or configure SMTP alone.
Setting up Resend (2 minutes, no credit card): sign up free at
https://resend.com → Dashboard → API Keys → create one → paste as
RESEND_API_KEY.
Setting up Gmail SMTP: Google Account → Security → 2-Step Verification
(turn on) → App passwords → generate one → paste that 16-character value
into SMTP_PASSWORD. If port 465 times out, try SMTP_PORT=587 (the app
automatically switches to STARTTLS for any non-465 port).
If neither Resend nor SMTP is configured, the app still works exactly the same (in-app full-screen alert + sound) — it just skips the email step and prints a warning in the terminal instead of crashing.
How to verify email is actually working (don't wait for a real alarm!)
Start the backend:
python -m server.api_server.In the frontend, sign in → Settings tab.
Click "Send test email" (
POST /api/test-email) — emails your signed-in address immediately and shows the exact success/error message on screen.Once the test email arrives, alarms and reminders will email you the same way automatically when they trigger.
Windows Notepad users: if you get "not configured" even after filling
in .env correctly, Notepad may have saved the file as UTF-16, which
python-dotenv can't read. Fix it in PowerShell:
(Get-Content .env -Raw) | Out-File -FilePath .env -Encoding ascii -NoNewlineRun the backend
python -m server.api_serverThis starts on http://127.0.0.1:8000. Leave this terminal running.
3. REST API reference (server/api_server.py)
Auth & profile
Method | Path | Purpose |
POST |
|
|
POST |
|
|
POST |
| Invalidates the current token |
POST |
|
|
GET |
| Resolves the current token back to a user |
POST |
| Sends a test email to the signed-in user right now |
GET |
| Current user's profile |
PUT |
|
|
DELETE |
|
|
Clock, alarms, reminders
Method | Path | Purpose |
GET |
| Current server time |
GET |
| Sound options, etc. for the frontend |
POST/GET |
| Stopwatch control (single shared instance) |
POST |
| Create an alarm (requires sign-in) |
GET |
| List your own alarms |
DELETE |
| Delete your own alarm |
POST |
| Stop a ringing alarm |
POST |
| Snooze a ringing alarm |
POST |
| Create a reminder (requires sign-in) |
GET |
| List your own reminders |
DELETE |
| Delete your own reminder |
POST |
| Dismiss a due reminder |
POST |
| Snooze a reminder |
GET |
| Polled every second by the frontend for due alarms/reminders |
News, search, compare, YouTube, trip planner, notes
Method | Path | Purpose |
GET |
| Today's top headlines for the Clock page's News panel |
POST |
| Web search (SerpAPI) |
POST |
| Single-product price search |
POST |
|
|
GET |
| YouTube search |
POST |
|
|
GET |
| List notes |
POST |
|
|
DELETE |
| Delete a note |
POST |
|
|
Access notes: /api/time, /api/stopwatch/*, /api/search,
/api/ecommerce*, /api/news, /api/youtube, /api/trip-planner are open
(no sign-in required). Alarms, reminders, and profile endpoints require an
Authorization: Bearer <token> header, since that's who gets emailed and
whose data it is.
MCP tools exposed by server/server.py: youtube_search, trip_planner,
notes_add, notes_delete, notes_list, notes_summarize, plus the
original clock/alarm/reminder/search/ecommerce tools.
4. Frontend setup
cd frontend
npm install
npm run devOpen http://localhost:5173.
Frontend structure
frontend/src/
api.js -> fetch() wrapper; auto-attaches the auth token
context/AuthContext.jsx -> signup/login/logout state, persisted in localStorage
App.jsx -> Sign in/up/Forgot-password when logged out; main app when logged in
components/
SignInPage.jsx -> email + password (+ "Forgot password?" link)
SignUpPage.jsx -> name + email + password -> auto signs in
ForgotPasswordPage.jsx -> name + email + new password -> resets & signs out old sessions
Header.jsx -> ribbon tabs + "About" button + signed-in name
ClockPage.jsx -> rotating-ring clock card, tap to open the sidebar; renders NewsPanel below it
NewsPanel.jsx -> today's headlines under the clock
Sidebar.jsx -> slide-in panel (opened from the clock) holding Stopwatch + Alarm
StopwatchPage.jsx -> HH:MM:SS:MS input, live countdown (lives in the sidebar)
AlarmPage.jsx -> HH:MM AM/PM, repeat, weekdays, sound, list (lives in the sidebar)
ReminderPage.jsx -> title/description/date/time, notify dropdown, list
SearchPage.jsx -> query box -> tools/search_tool.py
EcommercePage.jsx -> TWO product boxes -> side-by-side price compare
YouTubePage.jsx -> query box -> tools/youtube_tool.py
TripPlannerPage.jsx -> origin/destination/days -> tools/trip_planner_tool.py
NotesPage.jsx -> add/list/delete/summarize -> tools/notes_tool.py
AboutPage.jsx -> project summary (opened via the header's About button)
ProfilePage.jsx -> GET/PUT/DELETE profile modal (opened from Settings)
SettingsPage.jsx -> account info, "Edit profile", sign out, send-test-email
AlertOverlay.jsx -> full-screen alert (Stop/Delete, Snooze, Remind later)5. Quick demo checklist
python server/init_db.pythenpython -m server.api_servercd frontend && npm run devOpen http://localhost:5173 → you land on Sign up → create an account → you're redirected straight into the app.
Tap the clock → sidebar slides in with Stopwatch/Alarm tabs.
Scroll down on the Clock page → today's news headlines appear below it.
Go to Settings → Edit profile → try updating your name, then try both delete modes (soft vs hard) on a throwaway test account.
Set an alarm 1–2 minutes in the future. If
.envhas valid email settings, check that inbox when it rings.Go to Compare, type two product names, click Compare prices — both products' results appear side by side.
Try YouTube, Trip planner, and Notes tabs.
Click About (top-right of the header) to see the project summary.
This server cannot be installed
Maintenance
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
- Alicense-qualityDmaintenanceAn MCP server that allows Claude and other AI assistants to interact with the YouTube API, providing tools to search videos/channels and retrieve detailed information about them.Last updated311MIT
- AlicenseAqualityDmaintenanceAn MCP server that enables web searching, URL content extraction, and summarization without requiring API keys. It also provides advanced mathematical evaluation and multi-language Wikipedia summary retrieval tools.Last updated54006MIT
- Flicense-qualityBmaintenanceA plugin-based MCP server built on FastAPI that supports dynamic tool loading, hot reloading, and API key authentication for extensible AI tool integrations.Last updated
- AlicenseAqualityAmaintenanceAn MCP server connecting AI agents to Google, YouTube, Amazon, Walmart, TikTok, and Reddit. 21 tools for web search, product lookup, video discovery, and social media analysis.Last updated218086MIT
Related MCP Connectors
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Markdown-first MCP server for Notion API with 8 composite tools and 39 actions.
An MCP server that integrates with Discord to provide AI-powered features.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/saipavanbg/mcp-integrated-ai-assistant'
If you have feedback or need assistance with the MCP directory API, please join our Discord server