productivity
Thinkific MCP Integration for OpenAI Agents SDK
Connect Thinkific to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Thinkific to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Thinkific MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-thinkific": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=thinkific",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=thinkific --write=deny Why Use KosmoKrator Here
Expose only Thinkific instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Thinkific Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Thinkific integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__thinkific__thinkific_list_courses | thinkific.thinkific_list_courses | Read | List courses in your Thinkific site. Returns course IDs, names, descriptions, and status. Supports pagination and search. |
integration__thinkific__thinkific_get_course | thinkific.thinkific_get_course | Read | Get detailed information about a specific Thinkific course by its ID, including chapters, description, and pricing. |
integration__thinkific__thinkific_create_course | thinkific.thinkific_create_course | Write | Create a new course in Thinkific. Requires a course name. Optionally include a description and additional course settings. |
integration__thinkific__thinkific_list_enrollments | thinkific.thinkific_list_enrollments | Read | 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. |
integration__thinkific__thinkific_get_enrollment | thinkific.thinkific_get_enrollment | Read | Get detailed information about a specific Thinkific enrollment by its ID, including progress percentage, completion status, and associated course and user details. |
integration__thinkific__thinkific_list_users | thinkific.thinkific_list_users | Read | List users in your Thinkific site. Returns user IDs, names, emails, and status. Supports pagination and search. |
integration__thinkific__thinkific_get_current_user | thinkific.thinkific_get_current_user | Read | Get the profile of the currently authenticated Thinkific user. Useful for verifying API credentials and identifying the connected account. |