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

@moodlr/task-manager-mcp

v0.2.1

Published

MCP server for the Moodlr Task Manager — browse, create, edit, and move tasks from any MCP-compatible client.

Readme

@moodlr/task-manager-mcp

MCP server for the Moodlr Task Manager. Read, create, edit, and move tasks from any MCP-compatible client (Claude Desktop, Claude Code, others).

Prerequisites

  • Node.js 20+
  • An API key generated in the Task Manager (token starts with moodlr_)

Generating an API key

  1. Open the Task Manager dashboard.
  2. Click your avatar in the header → Credentials.
  3. Type a label (e.g. mcp-laptop) and click Create.
  4. Copy the token immediately — there's no way to recover it later.
  5. To revoke: same screen, click the trash icon.

Claude Desktop setup

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "moodlr": {
      "command": "npx",
      "args": ["-y", "@moodlr/task-manager-mcp"],
      "env": {
        "MOODLR_API_URL": "https://tasks.moodlr.com",
        "MOODLR_API_KEY": "moodlr_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Restart Claude Desktop. The tools become available immediately.

Claude Code setup

Add to the project's .mcp.json (or ~/.claude.json):

{
  "mcpServers": {
    "moodlr": {
      "command": "npx",
      "args": ["-y", "@moodlr/task-manager-mcp"],
      "env": {
        "MOODLR_API_URL": "https://tasks.moodlr.com",
        "MOODLR_API_KEY": "moodlr_..."
      }
    }
  }
}

Available tools

Workspaces

  • list_workspaces — workspaces the caller can access
  • list_workspace_members({ workspaceId })
  • add_workspace_member({ workspaceId, userId, role? }) — role: admin | member (defaults to member)
  • update_workspace_member_role({ workspaceId, userId, role })
  • remove_workspace_member({ workspaceId, userId })

Boards

  • list_boards({ workspaceId? })
  • list_board_members({ boardId })
  • list_statuses({ boardId }) — always returns the canonical 6-status set
  • create_board({ workspaceId, name, description?, color?, icon? })
  • update_board({ boardId, ...fields })
  • delete_board({ boardId })
  • add_board_member({ boardId, userId })
  • remove_board_member({ boardId, userId })

Tasks

  • list_tasks({ boardId?, statusId?, priority?, assigneeIds?, tagIds?, sprintId?, search? })
  • list_assigned_to_me() — cross-board feed for the current assignee
  • create_task({ boardId, title, description?, statusId?, groupId?, priority?, assigneeIds?, tagIds?, sprintId?, startDate?, dueDate? })
  • update_task({ taskId, ...fields }) — partial patch; accepts sprintId
  • move_task({ taskId, statusId }) — column shortcut (statusId=null = Backlog)
  • delete_task({ taskId }) — admin only
  • bulk_update_tasks({ taskIds, update })update.addAssigneeIds/addTagIds merge with the existing set; statusId/priority/sprintId/dates overwrite
  • bulk_delete_tasks({ taskIds })

Checklist (subtasks)

  • list_checklist({ taskId })
  • add_checklist_item({ taskId, title })
  • toggle_checklist_item({ taskId, itemId, isDone? }) — omit isDone to flip
  • rename_checklist_item({ taskId, itemId, title })
  • remove_checklist_item({ taskId, itemId })
  • reorder_checklist({ taskId, orderedIds })

Comments

  • list_comments({ taskId })
  • add_comment({ taskId, body })
  • edit_comment({ taskId, commentId, body })
  • delete_comment({ taskId, commentId })

Activity

  • list_task_activity({ taskId })

Sprints

  • list_sprints({ boardId })
  • create_sprint({ boardId, name, startDate, endDate, goal? })
  • update_sprint({ sprintId, ...fields })
  • start_sprint({ sprintId }) — planned → active
  • complete_sprint({ sprintId, moveIncompleteTo })moveIncompleteTo: "backlog" or a planned sprintId
  • delete_sprint({ sprintId })

Tags

  • list_tags({ workspaceId })
  • create_tag({ workspaceId, name, color? }) — idempotent
  • update_tag({ tagId, name?, color? })
  • delete_tag({ tagId })

Users

  • list_users({ search? })
  • find_user_by_email({ email })
  • whoami()

Notifications

  • list_notifications({ unreadOnly? })
  • mark_notification_read({ notificationId })
  • mark_all_notifications_read()
  • delete_notification({ notificationId })

Development

git clone https://github.com/moodlr-com/task-manager-mcp.git
cd task-manager-mcp
npm install
cp .env.example .env   # set MOODLR_API_URL and MOODLR_API_KEY
npm run dev            # tsx src/index.ts — stdio loop

To test with a local MCP client without publishing:

{
  "mcpServers": {
    "moodlr-dev": {
      "command": "node",
      "args": ["/abs/path/task-manager-mcp/dist/index.js"],
      "env": { "MOODLR_API_URL": "http://localhost:3000", "MOODLR_API_KEY": "moodlr_..." }
    }
  }
}

License

MIT