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., "@Coach AII'm feeling overwhelmed. What should I focus on right now?"
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.
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
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.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
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.serverReplace /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.dbProject Structure
coach-ai/
āāā src/
ā āāā coach_ai/
ā āāā __init__.py
ā āāā server.py # Main MCP server implementation
āāā data/
ā āāā coach.db # SQLite database (auto-created)
āāā pyproject.toml
āāā README.mdRoadmap
Core todo management
Goal tracking
User context learning
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
This 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.