We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/timowhite88/Farnsworth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""
Farnsworth Meeting Whisperer
----------------------------
"Did he say 'To shreds'? Oh my."
Simulates a real-time transcript analyzer.
"""
from loguru import logger
class MeetingWhisperer:
def analyze_segment(self, text: str):
"""Analyze live text for actionable items."""
text = text.lower()
if "action item" in text or "todo" in text:
logger.info(f"📝 ACTION ITEM DETECTED: {text}")
if "farnsworth" in text:
logger.info("👀 They are talking about me!")
whisperer = MeetingWhisperer()