Personal Assistant MCP Server
Allows sending email notifications via Gmail SMTP with HTML support.
Aggregates news from various RSS feeds including Israeli and tech news sources.
Provides access to top tracks and top podcasts based on recent listening history.
Integrates with Strava to fetch recent activities and weekly training summaries.
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., "@Personal Assistant MCP ServerGive me today's daily summary."
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.
Personal Assistant MCP Server
A FastMCP server that exposes tools for news aggregation, financial market data, fitness tracking, Spotify music data, and email notifications — usable directly from Claude via the Model Context Protocol.
Also includes a daily newsletter that automatically emails a formatted digest of market data and news each morning via GitHub Actions.
Features
News: Multi-source aggregation via NewsAPI and RSS (Times of Israel, Ynet, Hacker News, TechCrunch, The Verge, NPR, BBC)
Finance: Real-time ETF/stock prices and weekly performance via Yahoo Finance
Fitness: Strava integration for recent activities and weekly training summaries
Music: Spotify integration for top tracks and top podcasts based on recent listening
Email: Gmail SMTP notifications with HTML support
Daily Newsletter: Scheduled HTML digest email sent every morning at 7:00 AM UTC
Tools Exposed via MCP
Tool | Description |
| Send an email via Gmail SMTP |
| Fetch top headlines from NewsAPI (optional query/category) |
| Latest news from Israeli RSS sources |
| Latest tech news from RSS sources |
| Combined snapshot of all news + market data |
| Current price and daily change for a ticker |
| Multi-ticker market overview |
| Recent Strava activities |
| Weekly Strava training summary |
| Top tracks from the last ~4 weeks via Spotify |
| Top podcasts ranked by recent play frequency via Spotify |
Setup
Prerequisites
Python 3.12+
uvpackage managerGmail account with an App Password enabled
NewsAPI API key
(Optional) Strava API credentials
(Optional) Spotify app credentials (see Spotify Setup)
Install
uv syncUsage
As an MCP Server (Claude integration)
The .mcp.json file registers this server with Claude Code automatically. Once configured, the tools above are available directly in your Claude conversations.
To start the server manually:
uv run python server.pyFor SSE transport (HTTP server on port 9005):
MCP_TRANSPORT=sse uv run python server.pySend a daily newsletter manually
uv run python on_demand.pyWith timeout protection
uv run python safe_runner.pyInspect with MCP Inspector
npx @modelcontextprotocol/inspector uv run python server.pySpotify Setup
Spotify requires OAuth — a one-time setup to obtain a refresh token.
1. Create a Spotify App
Go to the Spotify Developer Dashboard and create an app.
Under Edit Settings, add
http://127.0.0.1:8888/callbackas a Redirect URI.Copy your Client ID and Client Secret into
.env:
SPOTIFY_CLIENT_ID=your_client_id
SPOTIFY_CLIENT_SECRET=your_client_secret2. Get a Refresh Token
Run the one-time authorization script:
uv run tools/spotify/get_refresh_token.pyThis opens a browser tab for Spotify authorization. After you approve, the script prints your refresh token. Add it to .env:
SPOTIFY_REFRESH_TOKEN=your_refresh_tokenThe required OAuth scopes are user-top-read and user-read-recently-played.
Tools
Tool | Scope required | Description |
|
| Top tracks over the last ~4 weeks, ranked by Spotify |
|
| Top podcast shows ranked by episode play count in the last 50 recently-played items |
Daily Newsletter (GitHub Actions)
The workflow at .github/workflows/daily-newsletter.yml runs every day at 7:00 AM UTC and sends an HTML email digest containing:
Market snapshot with daily and weekly performance for key ETFs
Israeli news highlights
World news highlights
Tech news highlights
Development
# Lint
uv run ruff check . --fix
# Run tests
uv run pytestTests cover internal utilities and data transformations. Mock tests for external APIs (NewsAPI, Yahoo Finance, Strava) are intentionally avoided — see .claude/CLAUDE.md for rationale.
Project Structure
├── server.py # FastMCP server entry point
├── on_demand.py # Daily newsletter generator
├── email_sender.py # Gmail SMTP client
├── safe_runner.py # Timeout-protected newsletter runner
├── logging_config.py # Structured JSON logging
├── cost_estimate.py # Monthly cloud cost estimator
├── tools/
│ ├── news/
│ │ ├── news.py # RSS + NewsAPI aggregation
│ │ └── on_demand.py # Manual newsletter trigger
│ ├── spotify/
│ │ ├── spotify.py # Spotify API integration
│ │ ├── get_refresh_token.py # One-time OAuth token setup
│ │ └── on_demand.py # Manual Spotify runner
│ ├── finance.py # Yahoo Finance integration
│ ├── strava.py # Strava API integration
│ └── daily_summary.py # Aggregated daily snapshot
├── tests/ # Unit tests
└── .github/workflows/ # GitHub ActionsThis server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/OzBlumenfeld/mcp_server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server