productivity
Podio MCP, CLI, and Lua Integration for AI Agents
Podio integration docs for AI agents: MCP gateway setup, Podio CLI commands, Lua API reference, credentials, and function schemas.Podio 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 |
|---|---|---|---|
podio.podio_list_spaces | Read read | 1 | List all workspaces (spaces) in a Podio organization. Returns space IDs, names, URLs, and membership details. Use this to discover available workspaces before exploring their apps and items. |
podio.podio_get_space | Read read | 1 | Get detailed information about a specific Podio workspace, including its name, description, URL, and settings. Use the space ID obtained from podio_list_spaces. |
podio.podio_list_apps | Read read | 1 | List all apps in a Podio workspace. Returns app IDs, names, item counts, and configuration. Use this to discover available apps before querying their items. |
podio.podio_get_app | Read read | 1 | Get detailed information about a specific Podio app, including its field definitions, layout, and configuration. Use this to understand the data structure before listing or filtering items. |
podio.podio_list_items | Read read | 6 | List and filter items in a Podio app. Supports filtering by field values, sorting, and pagination. Use podio_get_app first to understand the available fields for filtering. |
podio.podio_get_item | Read read | 1 | Get detailed information about a specific Podio item, including all field values, references, and metadata. Use the item ID obtained from podio_list_items. |
podio.podio_get_current_user | Read read | 0 | Get the status of the currently authenticated Podio user, including profile information, active organization memberships, and account details. |