productivity
Thinkific MCP Gateway for AI Agents
Expose Thinkific tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
7 functions 6 read 1 write API key auth
Thinkific MCP Gateway
Expose Thinkific to MCP clients with `kosmokrator mcp:serve --integration=thinkific`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=thinkific --write=deny --json {
"mcpServers": {
"kosmokrator-thinkific": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=thinkific",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=thinkific --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__thinkific__thinkific_list_courses | thinkific.thinkific_list_courses | Read read |
integration__thinkific__thinkific_get_course | thinkific.thinkific_get_course | Read read |
integration__thinkific__thinkific_create_course | thinkific.thinkific_create_course | Write write |
integration__thinkific__thinkific_list_enrollments | thinkific.thinkific_list_enrollments | Read read |
integration__thinkific__thinkific_get_enrollment | thinkific.thinkific_get_enrollment | Read read |
integration__thinkific__thinkific_list_users | thinkific.thinkific_list_users | Read read |
integration__thinkific__thinkific_get_current_user | thinkific.thinkific_get_current_user | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.