MCP ExplorerExplorer

Amazing Marvin Mcp

@bghenetion 4 days ago
4Β MIT
FreeCommunity
AI Systems
#ai-assistant#amazing#amazing-marvin#automation#claude#context-provider#cursor#llm#marvin#mcp#model-context-protocol#productivity#python#task-management#todo
Model Context Provider for Amazing Marvin productivity app - Access your tasks, projects, and categories in AI assistants

Overview

What is Amazing Marvin Mcp

Amazing Marvin AI Assistant Integration connects your Amazing Marvin productivity system with AI assistants like Claude and Cursor. It allows your AI to access real-time data from Amazing Marvin for personalized task management support without manual data entry.

Use cases

With this integration, you can receive daily planning help, project insights, progress tracking, smart scheduling, and time tracking assistance. Your AI can provide tailored advice based on your current workload, helping you prioritize and stay organized effectively.

How to use

Begin by acquiring your Amazing Marvin API key and installing the integration via Smithery or pip. Configure your AI client to recognize the integration by inputting the necessary API key into its configuration file. Once set up, you can ask your AI about your tasks, projects, and deadlines.

Key features

Key features include real-time access to tasks and projects, personalized daily focus suggestions, overdue item reminders, and the ability to track time and manage tasks directly through AI interactions. Your data privacy is ensured, as nothing is stored on external servers.

Where to use

You can use this integration with any Model Context Protocol-compatible AI client, such as Claude Desktop, Cursor, Windsurf, and VS Code, enhancing productivity through a seamless AI-assisted workflow.

Content

πŸš€ Amazing Marvin AI Assistant Integration

PyPI version
Python 3.10+
License: MIT
Model Context Protocol
smithery badge

Connect your Amazing Marvin productivity system with AI assistants for smarter task management

πŸ“‹ Table of Contents

🎯 What is this?

This connects your Amazing Marvin productivity system with AI assistants like Claude, Cursor, and others. Instead of manually copying your tasks and projects into chat, your AI assistant can see and help with your actual Amazing Marvin data.

✨ Key Benefits

  • πŸ”„ Stay in sync - Your AI assistant always sees your current tasks, projects, and goals
  • πŸ“‹ Smart help - Get personalized advice based on your actual workload and priorities
  • ⚑ Save time - No more copy-pasting task lists or explaining your projects
  • 🎯 Better focus - AI helps you identify what’s most important right now
  • πŸ”’ Private - Your data stays between Amazing Marvin and your AI assistant

⚑ Quick Start (2 minutes)

Step 1: Get your Amazing Marvin API key

  1. Open Amazing Marvin β†’ Settings β†’ API
  2. Enable the API and copy your token
  3. Keep this handy! πŸ”‘

Step 2: Install

Easy way (Smithery):

npx -y @smithery/cli install @bgheneti/amazing-marvin-mcp --client claude

Paste the API key when prompted

Alternative (pip):

pip install amazing-marvin-mcp

Then add to your AI client config (see installation guide)

Step 3: Verify it’s working

Ask your AI: β€œWhat tasks do I have today?”

πŸŽ‰ That’s it! Your AI can now see your Amazing Marvin data.


πŸ’‘ What can you do with this?

Once connected, your AI assistant becomes your personal productivity coach with access to your real Amazing Marvin data:

πŸ“… Daily Planning Help

β€œWhat should I focus on today?” - Get personalized recommendations based on your actual deadlines and priorities

β€œI’m feeling overwhelmed - what’s most important?” - AI helps you cut through the noise and identify what really matters

🎯 Project Insights

β€œHow is my website redesign project going?” - See progress, completed tasks, and what’s left to do

β€œShow me everything related to client work this week” - Get organized views of your tasks by project or category

πŸ“Š Progress Tracking

β€œWhat did I accomplish this week?” - Review your productivity patterns and celebrate wins

β€œWhich days am I most productive?” - Understand your patterns to plan better

⏰ Smart Scheduling

β€œWhat’s overdue and needs attention?” - Never lose track of important deadlines

β€œHelp me plan tomorrow based on what I have scheduled” - Get realistic daily plans that work

⏱️ Time Tracking

β€œStart tracking time on this task” - Seamlessly manage time tracking from your AI chat

β€œWhat have I been working on today?” - Review your time allocation and focus

Why this is better than generic productivity advice: Your AI sees your actual tasks, deadlines, and progress - so the help you get is personalized to your real situation, not generic tips.

Note: This covers most Amazing Marvin features, though some advanced customizations and strategies have limited API access.

πŸ“¦ Installation

Option 1: Smithery (Easiest)

npx -y @smithery/cli install @bgheneti/amazing-marvin-mcp --client claude

Visit Smithery Registry for other clients.

Option 2: Pip + Manual Config

Why choose this option:

  • βœ… Works with any MCP-compatible AI client
  • βœ… Easy to update: just pip install --upgrade amazing-marvin-mcp

Prerequisites

  • βœ… Python 3.10+
  • βœ… Claude Desktop, Cursor, Windsurf, VS Code, or another MCP client
  • βœ… Amazing Marvin account with API access

Installation

# Install from PyPI (recommended)
pip install amazing-marvin-mcp

πŸ“± Client Configuration

πŸ–₯️ Claude Desktop

Add to your claude_desktop_config.json:

πŸ“ Config file locations:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "amazing-marvin": {
      "command": "python",
      "args": [
        "-m",
        "amazing_marvin_mcp"
      ],
      "env": {
        "AMAZING_MARVIN_API_KEY": "your-api-key-here"
      }
    }
  }
}
🎯 Cursor

Add to your MCP settings:

{
  "mcpServers": {
    "amazing-marvin": {
      "command": "python",
      "args": [
        "-m",
        "amazing_marvin_mcp"
      ],
      "env": {
        "AMAZING_MARVIN_API_KEY": "your-api-key-here"
      }
    }
  }
}
πŸ’¨ Windsurf

Add to your Windsurf MCP configuration:

{
  "mcpServers": {
    "amazing-marvin": {
      "command": "python",
      "args": [
        "-m",
        "amazing_marvin_mcp"
      ],
      "env": {
        "AMAZING_MARVIN_API_KEY": "your-api-key-here"
      }
    }
  }
}
πŸ†š VS Code

Add to your VS Code MCP configuration:

{
  "mcpServers": {
    "amazing-marvin": {
      "command": "python",
      "args": [
        "-m",
        "amazing_marvin_mcp"
      ],
      "env": {
        "AMAZING_MARVIN_API_KEY": "your-api-key-here"
      }
    }
  }
}

πŸ’‘ Usage Examples

The MCP provides specific tools that your AI can use. Simply ask your AI to help with productivity tasks and it will use the appropriate tools:

What you might ask Tools the AI will use
β€œWhat tasks do I have today?” get_tasks()
β€œShow me my projects” get_projects()
β€œWhat’s overdue?” get_due_items()
β€œCreate a new task for X” create_task()
β€œMark task Y as done” mark_task_done()
β€œStart tracking time on this” start_time_tracking()

πŸ“ How it understands your setup

Your AI assistant automatically understands your Amazing Marvin structure:

  • Work & Personal projects - Keeps your professional and personal tasks organized
  • Categories and labels - Knows how you’ve organized your productivity system
  • Due dates and priorities - Understands what’s urgent vs. important
  • Completed vs. pending - Tracks your progress and momentum

No need to explain your system - your AI just gets it!

πŸ”§ Troubleshooting

❌ Common Issues

"API key not found" error

Problem: The MCP can’t find your API key.

Solutions:

  1. Verify your API key is correct in Amazing Marvin Settings β†’ API
  2. Check the environment variable: echo $AMAZING_MARVIN_API_KEY
  3. Restart your AI client after setting the key
  4. Ensure no extra spaces in your API key
"Connection refused" or timeout errors

Problem: Can’t connect to Amazing Marvin API.

Solutions:

  1. Check your internet connection
  2. Verify Amazing Marvin service status
  3. Try the connection test: python -c "import requests; print(requests.get('https://serv.amazingmarvin.com/api').status_code)"
  4. Check if you’re behind a corporate firewall
AI says "I don't see any Amazing Marvin data"

Problem: MCP is running but not returning data.

Solutions:

  1. Ask explicitly: β€œUse the Amazing Marvin tool to get my tasks”
  2. Check if you have any tasks in Amazing Marvin
  3. Verify API permissions in Amazing Marvin settings
  4. Restart your AI client
Python module not found

Problem: ModuleNotFoundError: No module named 'amazing_marvin_mcp'

Solutions:

  1. Reinstall: pip install --force-reinstall amazing-marvin-mcp
  2. Check Python path: python -c "import sys; print(sys.path)"
  3. Use full path: which python and use that in your config

❓ Common Questions

Is my data safe?

Absolutely! Your Amazing Marvin data stays between you, Amazing Marvin, and your AI assistant. The connection runs on your computer - nothing is stored on external servers or shared with anyone else.

Which AI assistants work with this?

Any AI assistant that supports the Model Context Protocol, including Claude Desktop, Cursor, VS Code, and Windsurf. More are being added regularly.

What can my AI assistant see?

Your AI can see:

  • βœ… Your tasks, projects, and categories
  • βœ… Due dates, priorities, and completion status
  • βœ… Time tracking and goals
  • βœ… Labels and organizational structure
  • βœ… Productivity history and patterns

Basically everything you see in Amazing Marvin, your AI can see too.

Will this make my AI assistant slower?

Not noticeably. The system fetches your data from Amazing Marvin when you ask productivity questions. Response time depends on your internet connection, but it’s usually very quick.

Can my AI assistant change my tasks?

Yes, if you ask it to! Your AI can:

  • βœ… Create new tasks and projects
  • βœ… Mark tasks as done
  • βœ… Start and stop time tracking
  • βœ… Organize tasks in batches

Don’t worry - it only makes changes when you specifically ask it to.

Can I see completed tasks?

Yes! The MCP can find and display completed tasks in several ways:

πŸ“Š In Daily Focus View:

  • βœ… Shows today’s completed tasks alongside pending ones
  • βœ… Includes completion count and productivity notes
  • βœ… Separates completed from pending for clear progress tracking

πŸ“ In Project Overviews:

  • βœ… Lists completed vs pending tasks separately
  • βœ… Shows completion rate and progress summary
  • βœ… Provides detailed task breakdowns

πŸ” Efficient Historical Access:

  • βœ… Get completed tasks for any specific date (e.g., β€œJune 10th”)
  • βœ… Flexible time range summaries (1 day, 7 days, 30 days, or custom date ranges)
  • βœ… Complete task data included - no additional API calls needed for task details
  • βœ… Smart caching - historical data cached for 10 minutes to avoid redundant calls
  • βœ… Project-wise completion analytics with resolved project names
  • βœ… Efficient API filtering with cache hit rate tracking
  • βœ… Real-time access to completion timestamps and project correlations
What can't the MCP do?

🚫 Cannot Delete or Remove:

  • ❌ Delete tasks (requires special API permissions)
  • ❌ Delete projects or categories
  • ❌ Remove labels or goals
  • ❌ Clear time tracking history

πŸ“ Cannot Edit:

  • ❌ Modify existing task content (title, notes, due dates)
  • ❌ Move tasks between projects
  • ❌ Change task priorities or labels
  • ❌ Update project settings

πŸ“š Limited Access:

  • ❌ Full historical completed task archive
  • ❌ Detailed time tracking reports (only basic tracking)
  • ❌ Private notes or sensitive data
  • ❌ Advanced Amazing Marvin features (strategies, rewards setup)

For these operations, use the Amazing Marvin app directly.

How often is the data updated?

Data is fetched in real-time with each request to Amazing Marvin’s API. There’s no background syncing or caching - you always get the most current data from your Amazing Marvin account.

πŸ‘¨β€πŸ’» Development

πŸ› οΈ Setup

git clone https://github.com/bgheneti/Amazing-Marvin-MCP.git
cd Amazing-Marvin-MCP
pip install -e ".[dev]"
pre-commit install

πŸ”‘ Set your API key

Option A: Environment variable

export AMAZING_MARVIN_API_KEY="your-api-key-here"

Option B: Create a .env file

AMAZING_MARVIN_API_KEY=your-api-key-here

πŸ§ͺ Testing

pytest tests/ -v

⚠️ Note: Tests create temporary items in your Amazing Marvin account with [TEST] prefixes. These may need manual cleanup due to API limitations.

πŸ“‹ Code Quality

# Run all checks
pre-commit run --all-files

# Individual tools
ruff check .          # Linting
ruff format .         # Formatting
mypy .               # Type checking
pytest tests/        # Tests

πŸ”„ Available Tools

The MCP provides 27 comprehensive tools to AI assistants:

πŸ“– Read Operations:

  • get_tasks() - Today’s scheduled items
  • get_projects() - All projects
  • get_categories() - All categories
  • get_due_items() - Overdue/due items
  • get_child_tasks() - Subtasks
  • get_labels() - Task labels
  • get_goals() - Goals and objectives
  • get_account_info() - Account details
  • get_completed_tasks() - Completed items with date categorization
  • get_completed_tasks_for_date() - Completed items for specific date
  • get_productivity_summary_for_time_range() - Flexible productivity analytics (by days, or start/end dates)
  • get_currently_tracked_item() - Active time tracking

✏️ Write Operations:

  • create_task() - Create new tasks
  • mark_task_done() - Complete tasks
  • create_project() - Create new projects
  • start_time_tracking() - Begin time tracking
  • stop_time_tracking() - End time tracking
  • batch_mark_done() - Complete multiple tasks
  • batch_create_tasks() - Create multiple tasks
  • claim_reward_points() - Claim kudos points

πŸ”§ Utility Operations:

  • test_api_connection() - Verify API connectivity
  • get_project_overview() - Project analytics
  • get_daily_focus() - Daily priorities
  • get_productivity_summary() - Performance metrics
  • time_tracking_summary() - Time analytics
  • quick_daily_planning() - Planning assistance
  • create_project_with_tasks() - Project setup
  • get_time_tracks() - Time tracking history

🀝 Contributing

πŸš€ Publishing New Versions

This project uses automated publishing to PyPI via GitHub Actions.

For maintainers:

# Make your changes and test them
pytest tests/ -v
ruff check src/
mypy src/amazing_marvin_mcp/

# Use the release script to bump version and create tag
python scripts/release.py patch   # for bug fixes
python scripts/release.py minor   # for new features
python scripts/release.py major   # for breaking changes

# Push to trigger CI and PyPI publish
git push origin main
git push origin v1.x.x

The workflow:

  1. βœ… Tests run on Python 3.8-3.12
  2. βœ… Linting and type checking pass
  3. πŸ“¦ Package is built and checked
  4. πŸš€ Published to PyPI automatically on version tags

πŸ”§ Local Development Setup

git clone https://github.com/bgheneti/Amazing-Marvin-MCP.git
cd Amazing-Marvin-MCP
pip install -e ".[dev]"
pre-commit install

πŸ§ͺ Testing

You can also manually publish to Test PyPI by running the workflow manually on GitHub.

πŸ”’ Privacy & Security

πŸ›‘οΈ Your Data Protection

  • Local Processing: MCP runs entirely on your machine
  • Direct Connection: Data goes directly from Amazing Marvin to your AI
  • No Cloud Storage: Nothing is stored on external servers
  • API Key Security: Store your key securely using environment variables

πŸ” Best Practices

  • βœ… Use environment variables for API keys (not config files)
  • βœ… Don’t share your API key in screenshots or logs
  • βœ… Keep your API key secure and treat it like a password

βš–οΈ Performance & Limitations

What to expect:

  • Your AI assistant fetches fresh data from Amazing Marvin when you ask questions
  • Historical data is cached briefly to avoid repeated requests
  • Response time depends on your internet connection to Amazing Marvin
  • Very frequent requests might occasionally hit rate limits (just wait a moment)

Technical details:

  • Data is fetched in real-time for accuracy
  • Some data is cached for 10 minutes to improve speed
  • Batch operations work efficiently for multiple tasks
  • All the core Amazing Marvin features are supported

πŸ“„ License

MIT License - see LICENSE for details.


Made with ❀️ for Amazing Marvin users

Report Issues β€’ Suggest Improvements β€’ Star on GitHub

Tools

No tools

Comments