View as Markdown
MeisterTask icon

MeisterTask ACTION

List Tasks

List tasks from MeisterTask. Supports basic filtering and pagination. See the docs
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's MeisterTask account once, then configure and run List Tasks from your backend or agent.

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: "meistertask-list-tasks",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    meistertask: { authProvisionId: "apn_xxxxxxx" },
    assignedToMe: true,
    focusedByMe: true,
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

List Tasks inputs
Property Type Description
assignedToMe Assigned to Me boolean
Return only tasks assigned to the authenticated user
Optional
focusedByMe Focused by Me boolean
Return only tasks focused by the authenticated user
Optional
status Status string
Filter tasks by status
Optional
labels Labels string
Comma-separated list of label IDs to filter tasks
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
meistertask-list-tasks
Version
0.0.1
App
MeisterTask
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes