1. Conduid
  2. AI
  3. Rtm MCP
MCP server · AI

Rtm MCP

Remember The Milk MCP Server - Full API coverage for Claude

Unclaimed MIT last commit 7 months ago remember-the-milkmcpairememberthemilkrtm
49Fair

Scored 8 hours ago · breakdown

About Rtm MCP

Rtm MCP is an MCP server published by ljadach in the AI category: remember The Milk MCP Server - Full API coverage for Claude. It has been installed 0 times through Conduid.

The repository has 2 stars and 0 forks, with the last commit 7 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx rtm-mcp

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Rtm MCP

Powered by Claude · Grounded in docs

I know everything about Rtm MCP. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.0.0v1.0.0 - Initial Release · 25 Jan 2026First public release of RTM MCP Server. Features Full RTM API coverage with 30+ tools Smart Add syntax support Undo support for all write operations Async performance with httpx Full type safety with Pydantic

README

RTM MCP Server

A production-quality Model Context Protocol (MCP) server for Remember The Milk task management.

Enables Claude to manage your tasks through natural language conversation.

Features

  • Full RTM API Coverage: 30+ tools covering tasks, lists, tags, notes, and more
  • Smart Add Syntax: Natural language task creation ("Call mom ^tomorrow !1 #family")
  • Undo Support: All write operations return transaction IDs for undo
  • Async Performance: Built on httpx with connection pooling
  • Type Safety: Full Pydantic models and type hints

Installation

Using uvx (Recommended)

uvx rtm-mcp

Using pip

pip install rtm-mcp

From Source

git clone https://github.com/ljadach/rtm-mcp.git
cd rtm-mcp
uv sync

Setup

1. Get RTM API Credentials

RTM API keys are issued through a separate developer portal (not your account settings):

  1. Go to RTM API Key Registration — you may need to log in first
  2. Click "Apply for an API Key"
  3. Fill in the form — app name (e.g. "Claude MCP"), description, anything works
  4. After submitting, you'll see your API Key and Shared Secret — save both

2. Run Setup

rtm-setup

This will:

  • Prompt for your API credentials
  • Open your browser for authorization
  • Save the auth token to ~/.config/rtm-mcp/config.json

3. Configure Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "rtm": {
      "command": "uvx",
      "args": ["rtm-mcp"]
    }
  }
}

Usage

Once configured, you can ask Claude to manage your tasks:

  • "Show my tasks due today"
  • "Add a task to buy groceries tomorrow, high priority"
  • "Complete the grocery task"
  • "What high priority tasks do I have?"
  • "Move the meeting prep task to my Work list"
  • "Add a note to the project task"

Smart Add Syntax

When adding tasks, use RTM's Smart Add syntax:

Symbol Meaning Example
^ Due date ^tomorrow, ^next friday
! Priority !1 (high), !2 (medium), !3 (low)
# Tag #work, #urgent
@ Location @home, @office
= Estimate =30min, =2h
* Repeat *daily, *every monday

Example: "Review report ^friday !1 #work =1h *weekly"

Available Tools

Tasks

  • list_tasks - List tasks with filters
  • add_task - Create a new task
  • complete_task / uncomplete_task - Mark done or reopen
  • delete_task - Remove a task
  • postpone_task - Move due date by one day
  • move_task - Move to different list
  • set_task_name - Rename task
  • set_task_due_date - Change due date
  • set_task_priority - Set priority level
  • set_task_recurrence - Set repeat pattern
  • set_task_start_date - Set start date
  • set_task_estimate - Set time estimate
  • set_task_url - Attach URL
  • add_task_tags / remove_task_tags - Manage tags

Notes

  • add_note - Add note to task
  • edit_note - Edit existing note
  • delete_note - Remove note
  • get_task_notes - View all notes

Lists

  • get_lists - List all lists
  • add_list - Create new list
  • rename_list - Rename list
  • delete_list - Delete list
  • archive_list / unarchive_list - Archive management
  • set_default_list - Set default list

Utilities

  • test_connection - Test API connectivity
  • check_auth - Verify authentication
  • get_tags - List all tags
  • get_locations - List saved locations
  • get_settings - View user settings
  • get_contacts / get_groups - Contact management
  • parse_time - Parse natural language time
  • undo - Undo previous operation

Configuration

Environment Variables

RTM_API_KEY=your_api_key
RTM_SHARED_SECRET=your_shared_secret
RTM_AUTH_TOKEN=your_token

Config File

~/.config/rtm-mcp/config.json:

{
  "api_key": "your_api_key",
  "shared_secret": "your_shared_secret",
  "token": "your_token"
}

Development

# Install dev dependencies
make dev

# Run linting
make lint

# Run tests
make test

# Run with coverage
make test/coverage

# Format code
make format

Docker

docker build -t rtm-mcp .
docker run -it --rm \
  -e RTM_API_KEY \
  -e RTM_SHARED_SECRET \
  -e RTM_AUTH_TOKEN \
  rtm-mcp

Claude Desktop config for Docker:

{
  "mcpServers": {
    "rtm": {
      "command": "docker",
      "args": ["run", "-i", "--rm",
        "-e", "RTM_API_KEY",
        "-e", "RTM_SHARED_SECRET",
        "-e", "RTM_AUTH_TOKEN",
        "rtm-mcp"]
    }
  }
}

License

MIT License - see LICENSE for details.

Acknowledgments

README mirrored from the source repository 8 hours ago. The original is authoritative.

Questions

About Rtm MCP

How do I install Rtm MCP?

Run npx rtm-mcp, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Rtm MCP safe to use with an AI agent?

Its trust score is 49 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Rtm MCP still maintained?

The last commit was 7 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.