# Checkvist — Pipedream Connect

> Task manager and online outliner with outstanding keyboard support, tags, due dates, search/filtering and collaboration.

- API slug: `checkvist` (use in MCP headers and tool keys)
- Auth: API key (Pipedream-managed)
- Categories: Productivity
- Website: https://checkvist.com
- This page (HTML): https://pipedream.com/apps/checkvist
- Tools: 4 actions · 2 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: checkvist`

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

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

const { tools } = await mcp.listTools()

// e.g. run Create List Item:
const result = await mcp.callTool({
  name: "checkvist-create-list-item",
  arguments: {
    listId: "List ID",
    content: "Content",
  },
})
```

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

## API proxy

For a Checkvist 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://checkvist.com/auth/curr_user.json

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9jaGVja3Zpc3QuY29tL2F1dGgvY3Vycl91c2VyLmpzb24?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: "checkvist-create-list-item",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    checkvist: { authProvisionId: "apn_xxxxxxx" },
    listId: "List ID",
    content: "Content",
  },
})
```

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

## Actions (4)

### `checkvist-create-list-item` — Create List Item (Write)

Creates a new list item within a specified list. See the documentation

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

### `checkvist-create-multiple-list-items` — Create Multiple List Items (Write)

Enables creation of several list items at once from a block of text. Indentations in the text indicate nested list items. See the documentation

Full schema: https://pipedream.com/apps/checkvist/actions/create-multiple-list-items.md

### `checkvist-create-new-list` — Create New List (Write)

Creates a new list in Checkvist. See the documentation

Full schema: https://pipedream.com/apps/checkvist/actions/create-new-list.md

### `checkvist-list-list-id-options` — List List ID Options (Read-only)

Retrieves available options for the List ID field.

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

## Triggers (2)

### `checkvist-new-list` — New List Created (Polling)

Emit new event when a new list is created in your Checkvist account.

Full schema: https://pipedream.com/apps/checkvist/triggers/new-list.md

### `checkvist-new-list-item` — New List Item Added (Polling)

Emit new event when a new list item is added in a selected list.

Full schema: https://pipedream.com/apps/checkvist/triggers/new-list-item.md

---

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