productivity
Podia MCP Integration for OpenAI Agents SDK
Connect Podia to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Podia 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.
Podia MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-podia": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=podia",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=podia --write=deny Why Use KosmoKrator Here
Expose only Podia 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.
Podia Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Podia integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__podia__podia_list_products | podia.podia_list_products | Read | List all online courses and digital downloads in your Podia account. Returns product names, IDs, types, and metadata. |
integration__podia__podia_get_product | podia.podia_get_product | Read | Get detailed information about a single Podia product by its ID. Returns full product data including description, price, type (course or download), and purchase URL. |
integration__podia__podia_list_customers | podia.podia_list_customers | Read | List all customers in your Podia account. Returns customer names, emails, and purchase history summaries. |
integration__podia__podia_get_customer | podia.podia_get_customer | Read | Get detailed information about a single Podia customer by their ID. Returns customer status, email, and purchase details. |
integration__podia__podia_list_sales | podia.podia_list_sales | Read | List sales from your Podia account. Optionally filter by product ID, date range, or page. Returns sale details including buyer info, amount, and product. |
integration__podia__podia_get_sale | podia.podia_get_sale | Read | Get detailed information about a single Podia sale by its ID. Returns full sale data including buyer details, amount, product, and payment status. |
integration__podia__podia_get_current_user | podia.podia_get_current_user | Read | Get the profile of the currently authenticated Podia user. Useful to verify the connection and see account details. |