Remember The Milk MCP

Connect AI with Remember The Milk.

menu

Get Connected

Follow the steps below to connect your AI assistant to Remember The Milk using the Model Context Protocol (MCP). Once connected, your AI assistant can read and manage your tasks, just as you would in the Remember The Milk app.

Note: Remember The Milk MCP is available exclusively for Pro members.

Claude Desktop

  1. Open Settings → Connectors.
  2. Click Add custom connector. Enter a name (e.g., Remember The Milk) and the URL:
    https://www.rememberthemilk.com/mcp
    Click Add when done.
  3. Locate Remember The Milk in the Connectors list and click Connect. Complete the sign-in flow to connect your Remember The Milk account.
Which Claude plans support custom connectors?

Custom connectors are available on all Claude plans. Free plans are limited to one custom connector; Pro, Max, Team, and Enterprise plans support unlimited connectors. Visit Claude’s support page for the latest information.

Claude Code

Run this command in your terminal:

claude mcp add --transport http rememberthemilk https://www.rememberthemilk.com/mcp

Then run /mcp in Claude Code and follow the sign-in flow to connect your account.

Using --scope flag for different installation scopes
  • --scope local (default): Available only to you in the current project
  • --scope user: Available to you across all projects

ChatGPT

  1. Open Settings → Apps & Connectors and enable Developer mode under Advanced settings.
  2. Go to Settings → Connectors, click Create, and enter the URL:
    https://www.rememberthemilk.com/mcp
  3. Complete the sign-in flow to connect your Remember The Milk account.
Which ChatGPT plans support MCP connectors?

Developer mode with MCP support is available on Plus, Pro, Business, Enterprise, and Education plans. Visit OpenAI’s developer mode docs for the latest information.

Codex

  1. Run this command in your terminal:
    codex mcp add rememberthemilk --url https://www.rememberthemilk.com/mcp
  2. Complete the sign-in flow to connect your Remember The Milk account.

Cursor

  1. Open Settings → Tools & MCP and click New MCP Server.
  2. Paste the following configuration:
    {
      "mcpServers": {
        "rememberthemilk": {
          "url": "https://www.rememberthemilk.com/mcp"
        }
      }
    }
  3. Save and restart Cursor. Complete the sign-in flow when prompted.

VS Code (GitHub Copilot)

  1. Create a .vscode/mcp.json file in your workspace:
    {
      "servers": {
        "rememberthemilk": {
          "type": "http",
          "url": "https://www.rememberthemilk.com/mcp"
        }
      }
    }
  2. Open the Command Palette (Cmd+Shift+P / Ctrl+Shift+P) and run MCP: List Servers.
  3. Start the Remember The Milk server and complete the sign-in flow when prompted.
User-level configuration

To configure Remember The Milk MCP across all your workspaces, run MCP: Open User Configuration from the Command Palette and add the server configuration there.

Windsurf

  1. Open Windsurf Settings (Cmd+, on Mac) and search for MCP.
  2. Click View raw config to open mcp_config.json.
  3. Add the Remember The Milk server configuration:
    {
      "mcpServers": {
        "rememberthemilk": {
          "serverUrl": "https://www.rememberthemilk.com/mcp"
        }
      }
    }
  4. Save and restart Windsurf. Complete the sign-in flow when prompted.

Antigravity

  1. Add the following to your mcp_config.json:
    {
      "mcpServers": {
        "rememberthemilk": {
          "serverUrl": "https://www.rememberthemilk.com/mcp"
        }
      }
    }
  2. Save and restart Antigravity. Complete the sign-in flow when prompted.

Other tools

Any AI tool that supports MCP should work with Remember The Milk. Use the following URL to connect:

https://www.rememberthemilk.com/mcp

Most tools accept either a URL directly or a JSON configuration like this:

{
  "mcpServers": {
    "rememberthemilk": {
      "url": "https://www.rememberthemilk.com/mcp"
    }
  }
}

Check your tool’s documentation for where to add an MCP server.