KosmoKrator

automation

Pipedream CLI for Coding Agents

Use the Pipedream CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.

7 functions 7 read 0 write Bearer token auth

Pipedream CLI for Coding Agents

Let coding agents discover schemas and execute integration functions through CLI commands or MCP.

Use this pattern when another coding agent needs exact commands and schema discovery. The Pipedream CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.

Command Shape

# Pipedream CLI for Coding Agents
kosmokrator integrations:configure pipedream --set access_token="$PIPEDREAM_ACCESS_TOKEN" --enable --read allow --write ask --json
kosmo integrations:call pipedream.pipedream_list_workflows '{"page":1,"limit":1}' --json

Discovery Before Execution

Agents and scripts can inspect Pipedream docs and schemas before choosing a function.

kosmo integrations:docs pipedream --json
kosmo integrations:docs pipedream.pipedream_list_workflows --json
kosmo integrations:schema pipedream.pipedream_list_workflows --json
kosmo integrations:search "Pipedream" --json
kosmo integrations:list --json

Useful Pipedream CLI Functions

FunctionTypeParametersDescription
pipedream.pipedream_list_workflows Read page, limit List automation workflows in Pipedream. Returns a paginated list of workflows with their IDs, names, and statuses.
pipedream.pipedream_get_workflow Read id Get details of a specific Pipedream workflow by ID, including its configuration, steps, and current status.
pipedream.pipedream_list_components Read type, limit List available Pipedream components (actions, triggers, etc.). Components are reusable building blocks for connecting to third-party APIs.
pipedream.pipedream_get_component Read app, id Get details of a specific Pipedream component by app and component key. Returns the component configuration, props, and version info.
pipedream.pipedream_list_connected_accounts Read page, limit List connected third-party accounts in Pipedream. These are the OAuth-connected accounts used by workflows to interact with external services.
pipedream.pipedream_list_triggers Read workflow_id List event triggers for a specific Pipedream workflow. Triggers define the events that cause a workflow to run.
pipedream.pipedream_get_current_user Read none Get the currently authenticated Pipedream user profile, including name, email, and workspace details.

Automation Notes

Related Pipedream CLI Pages