# Podio — Pipedream Connect

> Platform for creating no code solutions and automate workflows

- API slug: `podio` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Productivity
- Website: https://podio.com/
- Managed OAuth scopes: `global:all`
- This page (HTML): https://pipedream.com/apps/podio
- Tools: 9 actions · 7 triggers

## Connect via MCP (recommended)

- Endpoint: `https://remote.mcp.pipedream.net/v3`
- Headers: `Authorization: Bearer <token>` · `x-pd-project-id` · `x-pd-environment` · `x-pd-external-user-id` · `x-pd-app-slug: podio`

```ts
import { Client } from "@modelcontextprotocol/sdk/client/index.js"
import { StreamableHTTPClientTransport } from "@modelcontextprotocol/sdk/client/streamableHttp.js"
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const accessToken = await pd.rawAccessToken

const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": process.env.PIPEDREAM_PROJECT_ID!,
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "podio",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()

// e.g. run Attach File:
const result = await mcp.callTool({
  name: "podio-attach-file",
  arguments: {
    fileId: "File ID",
    objectType: "Object Type",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.md)

## API proxy

For a Podio endpoint with no pre-built tool, the proxy forwards your request with the connected user's credentials attached.

```bash
# The path segment is the target URL, URL-safe base64 encoded:
# https://api.podio.com/user

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkucG9kaW8uY29tL3VzZXI?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
  -H "Authorization: Bearer {access_token}" \
  -H "x-pd-environment: production"
```

Docs: [API proxy guide](https://pipedream.com/docs/connect/api-proxy.md)

## SDK

```ts
import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "podio-attach-file",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    podio: { authProvisionId: "apn_xxxxxxx" },
    fileId: "File ID",
    objectType: "Object Type",
  },
})
```

Docs: [Managed auth guide](https://pipedream.com/docs/connect/managed-auth/quickstart.md) · [Tools guide](https://pipedream.com/docs/connect/components.md)

## Actions (9)

### `podio-attach-file` — Attach File (Write)

Attaches an uploaded file to the given object. See the documentation

Full schema: https://pipedream.com/apps/podio/actions/attach-file.md

### `podio-create-item` — Create an Item (Write)

Adds a new item to the given app. See the documentation

Full schema: https://pipedream.com/apps/podio/actions/create-item.md

### `podio-create-status` — Create Status (Write)

Creates a status to the given workspace. See the documentation

Full schema: https://pipedream.com/apps/podio/actions/create-status.md

### `podio-create-task` — Create Task (Write)

Creates a task to the given workspace. See the documentation

Full schema: https://pipedream.com/apps/podio/actions/create-task.md

### `podio-find-item` — Find Item (Read-only)

Filters items for the given app. See the documentation

Full schema: https://pipedream.com/apps/podio/actions/find-item.md

### `podio-list-org-id-options` — List Organization ID Options (Read-only)

Retrieves available options for the Organization ID field.

Full schema: https://pipedream.com/apps/podio/actions/list-org-id-options.md

### `podio-update-item` — Update an Item (Write)

Updates an item. See the documentation

Full schema: https://pipedream.com/apps/podio/actions/update-item.md

### `podio-upload-file` — Upload File (Write)

Uploads a new file to Podio. See the documentation

Full schema: https://pipedream.com/apps/podio/actions/upload-file.md

### `podio-upload-from-url` — Upload From URL (Write)

Uploads a file from a URL to Podio. See the documentation

Full schema: https://pipedream.com/apps/podio/actions/upload-from-url.md

## Triggers (7)

### `podio-new-application-created` — New Application Created (Instant)

Emit new events when a new application is created. See the documentation

Full schema: https://pipedream.com/apps/podio/triggers/new-application-created.md

### `podio-new-item-created` — New Item Created (Instant)

Emit new events when a new item is created. See the documentation

Full schema: https://pipedream.com/apps/podio/triggers/new-item-created.md

### `podio-item-updated` — New Item Updated Event (Instant)

Emit new events when an item is updated. See the documentation

Full schema: https://pipedream.com/apps/podio/triggers/item-updated.md

### `podio-new-organization-created` — New Organization created (Polling)

Emit new events when a new organization created. See the documentation

Full schema: https://pipedream.com/apps/podio/triggers/new-organization-created.md

### `podio-new-task-created` — New Task Created (Instant)

Emit new events when a new task is created. See the documentation

Full schema: https://pipedream.com/apps/podio/triggers/new-task-created.md

### `podio-new-view-created` — New View created (Polling)

Emit new events when a new view created. See the documentation

Full schema: https://pipedream.com/apps/podio/triggers/new-view-created.md

### `podio-new-workspace-created` — New Workspace created (Polling)

Emit new events when a new workspace created. See the documentation

Full schema: https://pipedream.com/apps/podio/triggers/new-workspace-created.md

---

- All apps: https://pipedream.com/apps — index: https://pipedream.com/llms.txt
- Pipedream docs for agents: https://pipedream.com/docs/llms.txt
