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

mcp-articulate-reach360

v1.0.2

Published

A CLI MCP server for Articulate Reach360 LMS integration.

Readme

mcp-articulate-reach360

A Model Context Protocol (MCP) server and CLI that provides AI applications with access to Articulate Reach 360 LMS functionality through standardized tools and resources.

Features

Tools

  • User Management: List, get, and delete users
  • Course Management: List and get course details
  • Group Management: Create, read, update, and delete groups
  • Enrollment Management: Enroll/unenroll users in courses, manage group memberships
  • Reports Management: Activity, course, learner, group courses, and learning path reports

Resources

  • Access to user, course, group, and report data through standardized URIs
  • Support for both individual and bulk data access
  • Real-time data from Reach 360 API

Key Capabilities

  • ✅ Bearer token authentication
  • ✅ Support for both US and EU endpoints
  • ✅ Comprehensive error handling
  • ✅ Cursor-based pagination support
  • ✅ Type safety with TypeScript and Zod validation
  • ✅ API versioning support
  • ✅ MCP protocol compliance

Installation

Install globally with npm:

npm install -g mcp-articulate-reach360

Or use directly with npx:

npx mcp-articulate-reach360

Environment Setup

Set your Reach360 API key as an environment variable:

export REACH360_API_KEY=your_actual_api_key

Or create a .env file in your working directory:

REACH360_API_KEY=your_actual_api_key

Usage

Start the MCP server:

npx mcp-articulate-reach360

Supported Tools

  • list_users: List all users in the Reach 360 account (with optional email filter)
  • get_user: Get details of a specific user by ID
  • delete_user: Delete a user (limited to non-SSO learners)
  • list_courses: List all courses (with optional content type filter)
  • get_course: Get details of a specific course by ID
  • list_groups: List all groups (with optional name filter)
  • get_group: Get details of a specific group by ID
  • create_group: Create a new group
  • update_group: Update group name
  • delete_group: Delete a group
  • enroll_user_in_course: Enroll a user in a course
  • unenroll_user_from_course: Unenroll a user from a course
  • get_user_groups: Get groups that a user belongs to
  • get_group_users: Get users in a specific group
  • get_activity_report: Get user activity report (list of user sessions)
  • get_course_report: Get course learner report (list of learner sessions for a specific course)
  • get_learner_report: Get learner course report (list of course sessions for a specific learner)
  • get_group_courses_report: Get group courses report (list of course sessions in a group)
  • get_learning_path_courses_report: Get learning path courses report (list of courses in a learning path)
  • get_learning_path_learners_report: Get learning path learners report (list of learner sessions in a learning path)

Example Prompts

Here are some example prompts you can use to get started:

  • List all users from the Reach360 account.
  • Get details of the user with email "[email protected]".
  • List all groups in the Reach360 account.
  • Get details of the group named "Employees".
  • List all courses available in Reach360.
  • Get details of the course with ID "abc123".
  • Enroll the user with email "[email protected]" in the course "Onboarding 101".
  • Unenroll the user with email "[email protected]" from the course "Onboarding 101".
  • Create a new group named "New Hires".
  • Delete the user with email "[email protected]" from the Reach360 account.

License

MIT