productivity
Thinkific MCP, CLI, and Lua Integration for AI Agents
Thinkific integration docs for AI agents: MCP gateway setup, Thinkific CLI commands, Lua API reference, credentials, and function schemas.Thinkific 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 |
|---|---|---|---|
thinkific.thinkific_list_courses | Read read | 3 | List courses in your Thinkific site. Returns course IDs, names, descriptions, and status. Supports pagination and search. |
thinkific.thinkific_get_course | Read read | 1 | Get detailed information about a specific Thinkific course by its ID, including chapters, description, and pricing. |
thinkific.thinkific_create_course | Write write | 3 | Create a new course in Thinkific. Requires a course name. Optionally include a description and additional course settings. |
thinkific.thinkific_list_enrollments | Read read | 4 | List enrollments in your Thinkific site. Returns enrollment IDs, user info, course details, progress, and completion status. Supports pagination and filtering by course or user. |
thinkific.thinkific_get_enrollment | Read read | 1 | Get detailed information about a specific Thinkific enrollment by its ID, including progress percentage, completion status, and associated course and user details. |
thinkific.thinkific_list_users | Read read | 3 | List users in your Thinkific site. Returns user IDs, names, emails, and status. Supports pagination and search. |
thinkific.thinkific_get_current_user | Read read | 0 | Get the profile of the currently authenticated Thinkific user. Useful for verifying API credentials and identifying the connected account. |