npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@latercue/mcp-server

v1.0.7

Published

LaterCue MCP server - Connect your coding agent to your task queue

Downloads

640

Readme

@latercue/mcp-server

Connect your coding agent to your LaterCue task queue. Sync tasks between the LaterCue mobile app and your IDE.

Installation

npx -y @latercue/mcp-server login

This opens a browser for authentication. Sign in with the same account you use in the LaterCue app (Google, Apple, or email).

Note: MCP integration requires a Pro subscription. Download the LaterCue app and subscribe to Pro to get started.

Setup

Add LaterCue to your IDE's MCP configuration, then restart your IDE.

Claude Code

Run:

claude mcp add latercue --scope user -- npx -y @latercue/mcp-server

This adds LaterCue globally so it's available in every project. Restart Claude Code, then run /mcp to verify it appears.

Tip: If you use --scope project (or a .mcp.json file) instead, Claude Code will prompt you to approve the server on first use. Run claude mcp reset-project-choices if you need to re-trigger the approval.

Alternatively, create .mcp.json in your project root:

{
  "mcpServers": {
    "latercue": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@latercue/mcp-server"]
    }
  }
}

Cursor

Create .cursor/mcp.json in your project root (or ~/.cursor/mcp.json for global access):

{
  "mcpServers": {
    "latercue": {
      "command": "npx",
      "args": ["-y", "@latercue/mcp-server"]
    }
  }
}

VS Code

Add to your User Settings JSON (Cmd+Shift+P → "Preferences: Open User Settings (JSON)"):

{
  "mcp": {
    "servers": {
      "latercue": {
        "type": "stdio",
        "command": "npx",
        "args": ["-y", "@latercue/mcp-server"]
      }
    }
  }
}

Windsurf

Create .windsurf/mcp.json in your project root (or ~/.windsurf/mcp.json for global access):

{
  "mcpServers": {
    "latercue": {
      "command": "npx",
      "args": ["-y", "@latercue/mcp-server"]
    }
  }
}

Codex

Add to ~/.codex/config.toml (or .codex/config.toml in your project root):

[mcp_servers.latercue]
command = "npx"
args = ["-y", "@latercue/mcp-server"]

Or run:

codex mcp add latercue -- npx -y @latercue/mcp-server

Antigravity

Open the Antigravity sidebar, click MCP Servers > Manage MCP Servers > View raw config, then add:

{
  "mcpServers": {
    "latercue": {
      "command": "npx",
      "args": ["-y", "@latercue/mcp-server"]
    }
  }
}

Usage

Ask your coding agent:

  • "What LaterCue tasks do I have?" - Lists pending tasks
  • "Mark the React migration task as done" - Completes a task
  • "Save this link to my LaterCue queue" - Adds a new task
  • "Show my business profiles" - Lists your profiles
  • "Delete the old SEO task" - Removes a task
  • "Change the priority of that task to high" - Updates a task
  • "Show the action plan for that task" - Views step-by-step plan
  • "Mark step 1 of that plan as done" - Tracks plan progress
  • "Search my tasks for marketing ideas" - Semantic search across all tasks

Available Tools

| Tool | Description | |------|-------------| | latercue_get_tasks | Get pending or completed tasks, optionally filtered by profile | | latercue_approve_task | Mark a task as complete | | latercue_add_task | Add a new task/URL to your queue | | latercue_get_profiles | List your business profiles | | latercue_update_task | Update a task's description, priority, or time estimate | | latercue_delete_task | Permanently delete a task | | latercue_get_plan | Get the AI-generated action plan for a task | | latercue_toggle_plan_step | Mark a step in a task's action plan as complete or incomplete | | latercue_search_tasks | Semantic search across tasks using natural language |

CLI Commands

| Command | Description | |---------|-------------| | npx -y @latercue/mcp-server login | Authenticate with your LaterCue account | | npx -y @latercue/mcp-server logout | Remove saved credentials | | npx -y @latercue/mcp-server status | Check login status and subscription tier |

Troubleshooting

"Not logged in"

Run npx -y @latercue/mcp-server login to authenticate.

"MCP_PRO_REQUIRED"

MCP integration requires a Pro subscription. Download the LaterCue app and subscribe to Pro from the app.

Tasks not syncing

Ensure you're signed in with the same account (Google, Apple, or email) in both the app and CLI.

Server not showing in Claude Code /mcp

  • Restart Claude Code after adding the config — MCP servers are loaded at startup
  • If using project-scoped .mcp.json, you must approve the server on first launch. Run claude mcp reset-project-choices to re-trigger the prompt
  • Use --scope user to skip the approval step: claude mcp add latercue --scope user -- npx -y @latercue/mcp-server

Server not connecting

  • Verify the server starts: npx -y @latercue/mcp-server status
  • Restart your IDE after adding the MCP configuration
  • Check that npx is available in your PATH

License

MIT