productivity
Litmos MCP, CLI, and Lua Integration for AI Agents
Litmos integration docs for AI agents: MCP gateway setup, Litmos CLI commands, Lua API reference, credentials, and function schemas.Litmos for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
litmos.litmos_list_users | Read read | 3 | List users in your Litmos organization. Returns user IDs, names, emails, and status. Supports pagination and search. |
litmos.litmos_get_user | Read read | 1 | Get detailed information about a specific Litmos user by their ID, including profile data, course assignments, and team memberships. |
litmos.litmos_create_user | Write write | 4 | Create a new user in Litmos. Requires a first name, last name, email address, and username for login. |
litmos.litmos_list_courses | Read read | 3 | List courses in your Litmos organization. Returns course IDs, names, descriptions, and status. Supports pagination and search. |
litmos.litmos_get_course | Read read | 1 | Get detailed information about a specific Litmos course by its ID, including modules, description, and completion settings. |
litmos.litmos_list_teams | Read read | 2 | List teams in your Litmos organization. Returns team IDs, names, and description. Supports pagination. |
litmos.litmos_get_current_user | Read read | 0 | Get the profile of the currently authenticated Litmos user. Useful for verifying API credentials and identifying the connected account. |