# MeisterTask — Pipedream Connect

> Task Management for Teams

- API slug: `meistertask` (use in MCP headers and tool keys)
- Auth: OAuth (Pipedream-managed)
- Categories: Productivity
- Website: https://www.meistertask.com/
- Managed OAuth scopes: `userinfo.profile` · `userinfo.email` · `meistertask`
- This page (HTML): https://pipedream.com/apps/meistertask
- Tools: 13 actions · 4 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: meistertask`

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

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

const { tools } = await mcp.listTools()

// e.g. run Add Label To Task:
const result = await mcp.callTool({
  name: "meistertask-add-label-to-task",
  arguments: {
    projectId: "Project",
    sectionId: "Section",
  },
})
```

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

## API proxy

For a MeisterTask 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://www.meistertask.com/api/persons/me

curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly93d3cubWVpc3RlcnRhc2suY29tL2FwaS9wZXJzb25zL21l?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: "meistertask-add-label-to-task",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    meistertask: { authProvisionId: "apn_xxxxxxx" },
    projectId: "Project",
    sectionId: "Section",
  },
})
```

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

## Actions (13)

### `meistertask-add-label-to-task` — Add Label To Task (Write)

Adds a project label to a task. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/add-label-to-task.md

### `meistertask-create-attachment` — Create Attachment (Write)

Create a new attachment. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/create-attachment.md

### `meistertask-create-label` — Create Label (Write)

Create a new label in a project. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/create-label.md

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

Create a new task in a project section. See the docs

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

### `meistertask-get-attachment` — Get Attachment (Read-only)

Retrieves information about an attachment. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/get-attachment.md

### `meistertask-get-label` — Get Label (Read-only)

Retrieves information about a label. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/get-label.md

### `meistertask-get-person` — Get Person (Read-only)

Retrieves information about a person. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/get-person.md

### `meistertask-get-task` — Get Task (Read-only)

Retrieves information about a task. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/get-task.md

### `meistertask-list-project-id-options` — List Project Options (Read-only)

Retrieves available options for the Project field.

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

### `meistertask-list-projects` — List Projects (Read-only)

List all projects in MeisterTask. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/list-projects.md

### `meistertask-list-sections` — List Sections (Read-only)

List sections in MeisterTask, optionally scoped to a specific project. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/list-sections.md

### `meistertask-list-tasks` — List Tasks (Read-only)

List tasks from MeisterTask. Supports basic filtering and pagination. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/list-tasks.md

### `meistertask-update-task` — Update Task (Write)

Updaets an existing task in a project section. See the docs

Full schema: https://pipedream.com/apps/meistertask/actions/update-task.md

## Triggers (4)

### `meistertask-new-comment-created` — New Comment Created (Polling)

Emit new event when a new comment is created. See the docs

Full schema: https://pipedream.com/apps/meistertask/triggers/new-comment-created.md

### `meistertask-new-project-created` — New Project Created (Polling)

Emit new event when a new project is created. See the docs

Full schema: https://pipedream.com/apps/meistertask/triggers/new-project-created.md

### `meistertask-new-section-created` — New Section Created (Polling)

Emit new event when a new section is created. See the docs

Full schema: https://pipedream.com/apps/meistertask/triggers/new-section-created.md

### `meistertask-new-task-created` — New Task Created (Polling)

Emit new event when a new task is created. See the docs

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

---

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