RescueTime MCP Server
Provides Claude access to RescueTime productivity data, enabling users to query daily summaries, top activities, category breakdowns, and productivity trends through natural language.
README
RescueTime MCP Server
A lightweight MCP server that gives Claude access to your RescueTime productivity data. Built with FastMCP.
Tools
| Tool | Description |
|---|---|
get_daily_summary |
Productivity pulse, hours logged, productive vs. distracting time breakdown |
get_top_activities |
Top apps/websites ranked by time spent |
get_categories |
Time breakdown by category (Development, Communication, Social, etc.) |
get_productivity_trend |
Productivity pulse trend over the past N days |
All tools accept a day parameter: "today", "yesterday", or "YYYY-MM-DD".
Setup
1. Get your API key
Go to rescuetime.com/anapi/manage and create or copy an API key.
2. Install FastMCP
pipx install fastmcp
Or with uv:
uv tool install fastmcp
3. Add to Claude Code
claude mcp add rescuetime \
-e RESCUETIME_API_KEY=your_api_key_here \
-- fastmcp run /path/to/server.py
Or add manually to your .mcp.json:
{
"mcpServers": {
"rescuetime": {
"command": "fastmcp",
"args": ["run", "/path/to/server.py"],
"env": {
"RESCUETIME_API_KEY": "your_api_key_here"
}
}
}
}
4. Restart Claude Code
The RescueTime tools should appear in your session.
Example Usage
Once connected, you can ask Claude things like:
- "How productive was I today?"
- "What apps did I spend the most time on yesterday?"
- "Show me my productivity trend for the last 7 days"
- "What categories did I spend time on this week?"
Requirements
- Python 3.11+
- FastMCP 3.x
- A RescueTime account (free or premium)
- RescueTime API key
How It Works
The server calls the RescueTime Analytic Data API using your API key and returns structured productivity data that Claude can reason about. No data is stored or sent anywhere except back to your Claude session.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.