KosmoKrator

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.

7 functions 7 read 0 write Manual OAuth token auth

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.

Machine-Readable Metadata
integration_slug
podio
route_slug
podio
package
podio
auth_strategy
oauth2_manual_token Manual OAuth token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

Podio MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Podio.

Podio CLI Matrix

Use these pages for direct Podio CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
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.