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_tokenManual OAuth token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Podio CLIHeadless setup and direct function calls. Podio MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Podio MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Podio.
Claude Code Podio MCP setup for Claude Code. Cursor Podio MCP setup for Cursor. Codex Podio MCP setup for Codex. OpenAI Agents Podio MCP setup for OpenAI Agents SDK. Claude Agent SDK Podio MCP setup for Claude Agent SDK. Vercel AI SDK Podio MCP setup for Vercel AI SDK. LangChain Podio MCP setup for LangChain. LangGraph Podio MCP setup for LangGraph. CrewAI Podio MCP setup for CrewAI. MCP clients Podio MCP setup for Generic MCP Clients.
Podio CLI Matrix
Use these pages for direct Podio CLI workflows in scripts, CI, cron, and agent wrappers.
CI Podio CLI for CI. Cron Jobs Podio CLI for cron jobs. Shell Scripts Podio CLI for shell scripts. Headless Automation Podio CLI for headless automation. Coding Agents Podio CLI for coding agents.
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. |