Coach AI
A productivity coaching assistant designed for ADHD support that provides intelligent task management, goal tracking, and personalized recommendations. It utilizes a persistent memory system to learn user patterns and preferences, helping to reduce decision paralysis through actionable suggestions.
README
Coach AI
A productivity coaching assistant built as an MCP (Model Context Protocol) server, designed with ADHD support in mind. Coach AI provides intelligent task management, goal tracking, and personalized recommendations through a set of tools that integrate seamlessly with any MCP-compatible AI client.
Rather than being a standalone application, Coach AI acts as a plugin that enhances your existing AI workflow with persistent memory and specialized coaching capabilities.
Table of Contents
- Features
- Installation
- Configuration
- Usage
- Available Tools
- Development
- Design Philosophy
- Roadmap
- Contributing
- License
Features
- Todo Management: Add, list, complete, and prioritize tasks
- Goal Tracking: Set and monitor short-term and long-term goals
- Personalized Recommendations: Get intelligent suggestions for what to do next based on your context
- Learning System: Remembers your preferences, patterns, and what works for you
- Accomplishment Logging: Track your wins for positive reinforcement
- Decision Paralysis Support: Designed specifically to help with ADHD challenges
Installation
Prerequisites
- Python 3.10 or higher
- uv (recommended) or pip
Install Coach AI
Clone the repository and install the package:
git clone <your-repo-url>
cd coach-ai
uv pip install -e .
Or with pip:
pip install -e .
Configuration
For Claude Desktop
-
Open your Claude Desktop configuration file:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.config/Claude/claude_desktop_config.json
- macOS:
-
Add Coach AI to the
mcpServerssection:
{
"mcpServers": {
"coach-ai": {
"command": "uv",
"args": [
"run",
"--directory",
"/absolute/path/to/coach-ai",
"python",
"-m",
"coach_ai.server"
]
}
}
}
Note: Replace /absolute/path/to/coach-ai with the actual path where you cloned this repository.
-
Restart Claude Desktop completely (Quit and reopen)
-
Look for the šØ icon in the chat input to verify the tools are loaded
For Claude Code
Claude Code automatically detects MCP servers configured in Claude Desktop's config file. Once you've configured the server for Claude Desktop, it will be available in Claude Code without additional setup.
Usage
Once configured, simply chat with Claude naturally. The AI will automatically use Coach AI's tools when appropriate.
Example Interactions
Get a personalized recommendation:
You: "What should I focus on right now?"
The AI will call get_recommendation() and provide a personalized suggestion based on your todos, goals, and learned preferences.
Add a task:
You: "Add a todo: Review the marketing proposal, make it high priority"
The AI will call add_todo(title="Review the marketing proposal", priority="high").
Set a goal:
You: "I want to launch my side project by the end of this month"
The AI will call set_goal(goal="Launch side project", timeframe="this month", category="career").
Store context about yourself:
You: "Remember that I work best in the mornings before 11am"
The AI will call add_user_fact(fact="Works best in mornings before 11am", category="patterns").
Available Tools
Todo Management
add_todo(title, priority="medium", notes="")- Add a new todolist_todos(status="active")- List todos (active/completed/all)complete_todo(todo_id)- Mark a todo completedelete_todo(todo_id)- Delete a todo
Goal Management
set_goal(goal, timeframe, category="general")- Set a new goallist_goals(status="active")- List all goals
User Context
add_user_fact(fact, category="general")- Remember something about youget_user_context()- Retrieve stored facts about youlog_accomplishment(description)- Log something you accomplished
Recommendations
get_recommendation()- Get a personalized "what should I do now?" recommendation
Development
Testing with MCP Inspector
During development, you can test the server interactively:
npx @modelcontextprotocol/inspector uv run --directory /path/to/coach-ai python -m coach_ai.server
Replace /path/to/coach-ai with your installation directory. This opens a web UI at http://localhost:5173 where you can test tools without an AI client.
Database Location
By default, Coach AI stores data in data/coach.db. You can customize this with the COACH_DB_PATH environment variable:
export COACH_DB_PATH=/path/to/custom/coach.db
Project Structure
coach-ai/
āāā src/
ā āāā coach_ai/
ā āāā __init__.py
ā āāā server.py # Main MCP server implementation
āāā data/
ā āāā coach.db # SQLite database (auto-created)
āāā pyproject.toml
āāā README.md
Roadmap
- [x] Core todo management
- [x] Goal tracking
- [x] User context learning
- [x] Recommendation engine
- [ ] Obsidian vault integration (read daily notes)
- [ ] Time-of-day awareness for recommendations
- [ ] Task breakdown for overwhelming todos
- [ ] Weekly review prompts
- [ ] Energy level tracking
- [ ] Habit tracking
Design Philosophy
Coach AI is designed with ADHD-friendly principles:
- Combat decision paralysis: Provides clear, actionable recommendations instead of overwhelming you with choices
- Persistent memory: Learns your patterns and preferences to reduce cognitive load
- Positive reinforcement: Celebrates accomplishments to maintain motivation
- Simple yet extensible: Starts with core functionality and grows with your needs
- Client-agnostic: Works with any MCP-compatible AI client, not tied to a specific interface
License
MIT
Contributing
Contributions are welcome! If you have ideas for improvements or encounter any issues, please feel free to:
- Open an issue to report bugs or suggest features
- Submit a pull request with improvements
- Share feedback on how Coach AI works for your workflow
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.