# Planview Leankit — Pipedream Connect

> Planview LeanKit enables organizations and teams to visually track and manage the flow of work from strategy to delivery in enterprise Kanban boards. Share a consolidated view of work priority and status – whether in the same room or distributed across the globe.

- API slug: `planview_leankit` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Business Management
- Website: https://www.planview.com/products-solutions/products/leankit
- This page (HTML): https://pipedream.com/apps/planview-leankit
- Tools: 28 actions · 6 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: planview_leankit`

```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": "planview_leankit",
      },
    },
  },
)

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

const { tools } = await mcp.listTools()

// e.g. run Add Card Type To Board:
const result = await mcp.callTool({
  name: "planview_leankit-create-card-type",
  arguments: {
    boardId: "Board ID",
    name: "Name",
  },
})
```

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

## API proxy

For a Planview Leankit 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.example.com/v1/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZXhhbXBsZS5jb20vdjEvbWU?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: "planview_leankit-create-card-type",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    planview_leankit: { authProvisionId: "apn_xxxxxxx" },
    boardId: "Board ID",
    name: "Name",
  },
})
```

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

## Actions (28)

### `planview_leankit-create-card-type` — Add Card Type To Board (Write)

Create a new card type on a board. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/create-card-type.md

### `planview_leankit-create-comment` — Add Comment To Card (Or Task) (Write)

Create a comment in a card or task. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/create-comment.md

### `planview_leankit-add-tags-to-card` — Add Tags To Card (Or Task) (Write)

Add tags in a card or task. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/add-tags-to-card.md

### `planview_leankit-assign-user-to-card` — Assign User To Card (Write)

Assign one or more users to cards. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/assign-user-to-card.md

### `planview_leankit-assign-user-to-task` — Assign User To Task (Write)

Assign one or more users to tasks. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/assign-user-to-task.md

### `planview_leankit-block-card` — Block Card (Or Task) (Write)

Block a card or a task. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/block-card.md

### `planview_leankit-complete-task` — Complete Task (Write)

Move a task to completed lane. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/complete-task.md

### `planview_leankit-add-connection-to-card` — Create a Parent/Child Connection (Write)

Add parent or child connection to a card. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/add-connection-to-card.md

### `planview_leankit-create-card` — Create Card (Write)

Create a new card. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/create-card.md

### `planview_leankit-create-custom-field` — Create Custom Field (Write)

Create a new custom field. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/create-custom-field.md

### `planview_leankit-create-task-card` — Create Task Card (Write)

Create a task card. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/create-task-card.md

### `planview_leankit-delete-custom-field` — Delete Custom Field (Write)

Delete a custom field. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/delete-custom-field.md

### `planview_leankit-duplicate-card` — Duplicate Card (Write)

Duplicate a card. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/duplicate-card.md

### `planview_leankit-duplicate-task` — Duplicate Task (Write)

Duplicate a task. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/duplicate-task.md

### `planview_leankit-find-first-card` — Find First Card (Read-only)

Find first matching card. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/find-first-card.md

### `planview_leankit-find-or-create-card` — Find OR Create Card (Read-only)

Find or create a new card. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/find-or-create-card.md

### `planview_leankit-get-card` — Get Card (Read-only)

Get card details by card id. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/get-card.md

### `planview_leankit-list-board-id-options` — List Board ID Options (Read-only)

Retrieves available options for the Board ID field.

Full schema: https://pipedream.com/apps/planview-leankit/actions/list-board-id-options.md

### `planview_leankit-list-planning-series-id-options` — List Planning Series ID Options (Read-only)

Retrieves available options for the Planning Series ID field.

Full schema: https://pipedream.com/apps/planview-leankit/actions/list-planning-series-id-options.md

### `planview_leankit-move-cards-between-lanes` — Move Cards Between Lanes (Write)

Move cards between lanes. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/move-cards-between-lanes.md

### `planview_leankit-move-cards-to-another-board` — Move Cards To Another Board (Write)

Move cards to other boards. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/move-cards-to-another-board.md

### `planview_leankit-remove-connection-from-card` — Remove Parent/Child Connection (Write)

Remove parent or child connection from a card. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/remove-connection-from-card.md

### `planview_leankit-remove-tags-from-card` — Remove Tags From Card (Write)

Remove tags from a card or task. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/remove-tags-from-card.md

### `planview_leankit-start-task` — Start Task (Write)

Move a task to inProcess lane. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/start-task.md

### `planview_leankit-unassign-user` — Unassign User (Write)

Unassign an user from a card or a task. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/unassign-user.md

### `planview_leankit-unblock-card` — Unblock Card (Or Task) (Write)

Unlock a card or a task. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/unblock-card.md

### `planview_leankit-update-card` — Update Card (Or Task) (Write)

Update a card or task's fields. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/update-card.md

### `planview_leankit-update-custom-field-value` — Update Custom Field Value (Write)

Update custom field value on a card. See the docs here

Full schema: https://pipedream.com/apps/planview-leankit/actions/update-custom-field-value.md

## Triggers (6)

### `planview_leankit-card-assigned-to-user` — New Card Assigned To User (Polling)

Emit new event when a card is assigned to a user.

Full schema: https://pipedream.com/apps/planview-leankit/triggers/card-assigned-to-user.md

### `planview_leankit-card-created-in-lane` — New Card Created In A Specific Lane (Polling)

Emit new event when a card is created in a specific lane.

Full schema: https://pipedream.com/apps/planview-leankit/triggers/card-created-in-lane.md

### `planview_leankit-card-created-on-board` — New Card Created On Board (Polling)

Emit new event when a card is created on a board.

Full schema: https://pipedream.com/apps/planview-leankit/triggers/card-created-on-board.md

### `planview_leankit-card-entered-a-lane` — New Card Entered a Specific Lane (Polling)

Emit new event when a card enters a specific lane.

Full schema: https://pipedream.com/apps/planview-leankit/triggers/card-entered-a-lane.md

### `planview_leankit-card-moved-on-board` — New Card Moved On Board (Polling)

Emit new event when a card is moved on a board.

Full schema: https://pipedream.com/apps/planview-leankit/triggers/card-moved-on-board.md

### `planview_leankit-card-updated-on-board` — New Card Updated On Board (Polling)

Emit new event when a card is updated on a board.

Full schema: https://pipedream.com/apps/planview-leankit/triggers/card-updated-on-board.md

---

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