Ross MCP

Ross MCP

Personal life admin MCP server that manages Apple Reminders from any Claude session via a cloud relay to a local Mac agent.

Category
访问服务器

README

Ross MCP

Personal life admin system — manage Apple Reminders, Outlook email/calendar, and Apple Notes from Claude, ChatGPT, or any MCP/API client.

Architecture: Client (Claude/ChatGPT/API) → Cloud Relay (Fly.io) → Local Mac Agent → Apple APIs / Microsoft Graph

Features

Category Tools
Apple Reminders Create, list, complete reminders
Outlook Email Search, read, draft, send, schedule, archive emails
Outlook Calendar List events, create/update/cancel events, find free slots
Apple Notes Search, read, create notes, list folders
Voice Memos List recordings, transcribe with speaker diarization (Deepgram)

24 tools accessible from:

  • Claude (web/desktop/CLI) via MCP protocol
  • ChatGPT via Custom GPT Actions (OpenAPI)
  • Any HTTP client via REST API

Quick Start

1. Clone and set up Python

cd ross-mcp
python3 -m venv .venv
source .venv/bin/activate
pip install -r agent/requirements.txt
pip install mcp httpx

2. Configure environment

cp .env.example .env
# Edit .env — set RELAY_API_KEY (must match the Fly.io secret)

3. Set up Outlook (one-time)

# Install Azure CLI
brew install azure-cli

# Log in to Azure
az login

# Register the app and save credentials to .env
./agent/setup_azure.sh

# Run the OAuth login (opens browser)
python3 -c "
import asyncio
from dotenv import load_dotenv
load_dotenv()
from agent.services.outlook_auth import OutlookAuth
auth = OutlookAuth()
asyncio.run(auth.authorize())
print('Success!' if auth.is_authenticated else 'Failed')
"

You only need to do this once per Mac. The refresh token auto-renews every 3 days.

4. Run the agent

source .venv/bin/activate
python -m agent.agent

The agent will:

  • Connect to the cloud relay via WebSocket
  • Start a local web UI at http://127.0.0.1:8001
  • Listen for commands from any client

5. Install as auto-start service

./agent/install.sh

Creates a launchd service that starts on boot and keeps running.

Connecting Clients

Claude Web / Desktop (MCP)

Connect to the remote MCP endpoint:

Setting Value
URL https://ross-mcp-relay.fly.dev/mcp/mcp
Transport Streamable HTTP
Auth Bearer token (your RELAY_API_KEY)

Claude Code (CLI)

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "ross-life-admin": {
      "command": "/path/to/ross-mcp/.venv/bin/python",
      "args": ["/path/to/ross-mcp/mcp_server.py"],
      "env": {
        "RELAY_API_KEY": "your-api-key",
        "MCP_RELAY_URL": "https://ross-mcp-relay.fly.dev"
      }
    }
  }
}

ChatGPT (Custom GPT)

  1. Create a Custom GPT at chat.openai.com
  2. Add an Action → Import from URL: https://ross-mcp-relay.fly.dev/openapi.json
  3. Set auth to Bearer with your RELAY_API_KEY

This imports all 22 tool endpoints. See the Swagger UI at https://ross-mcp-relay.fly.dev/docs.

Direct REST API

curl -X POST https://ross-mcp-relay.fly.dev/api/command \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type": "create_reminder", "payload": {"title": "Buy milk"}}'

Deployment

Cloud Relay (Fly.io)

The relay runs on Fly.io in the lhr region. To deploy changes:

fly deploy

Manage secrets:

fly secrets list --app ross-mcp-relay
fly secrets set RELAY_API_KEY=your-key --app ross-mcp-relay

View logs:

fly logs --app ross-mcp-relay

Local Agent

Manual start:

source .venv/bin/activate
python -m agent.agent

Launchd service commands:

Action Command
Install ./agent/install.sh
Stop launchctl unload ~/Library/LaunchAgents/com.ross.mcp-agent.plist
Start launchctl load ~/Library/LaunchAgents/com.ross.mcp-agent.plist
Restart Unload then load
Logs tail -f ~/Library/Logs/mcp-agent/mcp-agent.log
Errors tail -f ~/Library/Logs/mcp-agent/mcp-agent.err

Setting up a second Mac

  1. Clone the repo
  2. Set up venv and install dependencies
  3. Copy .env and change AGENT_NAME to identify the machine
  4. Run ./agent/setup_azure.sh then the OAuth login (one-time)
  5. Run ./agent/install.sh

Both agents connect to the same relay — commands route to whichever is online.

Voice Memo Transcription

Record meetings on iPad using Voice Memos, share to iCloud Drive, then transcribe via Claude or ChatGPT.

Setup

  1. Create a "Meeting Recordings" folder in iCloud Drive (done automatically by the agent)
  2. Create an iOS Shortcut called "Save Meeting Recording" on your iPad:
    • Action: Save File → iCloud Drive / Meeting Recordings (Ask Where to Save: off)
    • Enable Show in Share Sheet, set receives to Audio
  3. Add your DEEPGRAM_API_KEY to .env

After a meeting

  1. Open Voice Memos on iPad → tap ...ShareSave Meeting Recording
  2. Tell Claude: "Transcribe my meeting with [name] from this morning"
  3. Claude finds the recording, transcribes with speaker diarization, enriches with summary and action points, and saves as an Apple Note

Remote Endpoints

Endpoint URL Auth
Dashboard https://ross-mcp-relay.fly.dev/ API key in UI
MCP (Claude) POST https://ross-mcp-relay.fly.dev/mcp/mcp Bearer token
REST API POST https://ross-mcp-relay.fly.dev/api/command Bearer token
Tool endpoints (ChatGPT) POST https://ross-mcp-relay.fly.dev/api/tools/* Bearer token
Swagger UI https://ross-mcp-relay.fly.dev/docs None (read-only)
Status GET https://ross-mcp-relay.fly.dev/api/status Bearer token
Agent WebSocket wss://ross-mcp-relay.fly.dev/ws/agent Bearer token

Secrets

Secret Location Notes
RELAY_API_KEY .env (local) Shared by agent, MCP server, and clients
RELAY_API_KEY Fly.io secrets Set via fly secrets set
MS_CLIENT_ID / MS_CLIENT_SECRET .env (local) Azure AD app credentials
.outlook_tokens.json Project root (gitignored) OAuth tokens, auto-refreshed
DEEPGRAM_API_KEY .env (local) For voice memo transcription

Regenerate API key:

python3 -c "import secrets; print(secrets.token_urlsafe(32))"
# Update: .env, fly secrets set, and any client configs

Project Structure

ross-mcp/
├── agent/                         # Local Mac agent
│   ├── agent.py                   # Main agent (WebSocket client + command dispatch)
│   ├── web.py                     # Local web UI (port 8001)
│   ├── setup_azure.sh             # Azure AD app registration script
│   ├── install.sh                 # Launchd auto-start installer
│   └── services/
│       ├── reminders.py           # Apple Reminders via EventKit
│       ├── notes.py               # Apple Notes via AppleScript
│       ├── outlook_auth.py        # OAuth2 for Microsoft Graph
│       ├── outlook_mail.py        # Outlook email operations
│       ├── outlook_calendar.py    # Outlook calendar operations
│       └── voice_memos.py         # Voice memo transcription (Deepgram)
├── relay/                         # Cloud relay (Fly.io)
│   ├── relay.py                   # FastAPI hub (WebSocket + HTTP + dashboard)
│   ├── mcp_endpoint.py            # Remote MCP server (streamable-http)
│   ├── openai_endpoints.py        # REST endpoints for ChatGPT Actions
│   ├── Dockerfile
│   └── requirements.txt
├── shared/
│   └── messages.py                # Command/Response schemas (25 command types)
├── mcp_server.py                  # Local MCP server (stdio, for Claude Code)
├── fly.toml                       # Fly.io config
├── .env.example                   # Environment template
├── ROADMAP.md                     # Planned features
└── SPRINT.md                      # Sprint log

Links

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选