# Taiga — Pipedream Connect

> The free and open-source project management tool

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

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

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

const { tools } = await mcp.listTools()

// e.g. run Create Issue:
const result = await mcp.callTool({
  name: "taiga-create-issue",
  arguments: {
    projectId: "Project ID",
    subject: "Subject",
  },
})
```

Docs: [MCP guide](https://pipedream.com/docs/connect/mcp/developers.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: "taiga-create-issue",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    taiga: { authProvisionId: "apn_xxxxxxx" },
    projectId: "Project ID",
    subject: "Subject",
  },
})
```

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

## Actions (12)

### `taiga-create-issue` — Create Issue (Write)

Create a new issue in a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/create-issue.md

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

Create a new task in a Taiga project. See the documentation

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

### `taiga-create-userstory` — Create User Story (Write)

Create a new user story in a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/create-userstory.md

### `taiga-delete-issue` — Delete Issue (Write)

Delete an existing issue from a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/delete-issue.md

### `taiga-delete-task` — Delete Task (Write)

Delete an existing task from a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/delete-task.md

### `taiga-delete-userstory` — Delete User Story (Write)

Delete an existing user story from a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/delete-userstory.md

### `taiga-get-issue` — Get Issue (Read-only)

Get an existing issue from a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/get-issue.md

### `taiga-get-userstory` — Get User Story (Read-only)

Get an existing user story from a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/get-userstory.md

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

Retrieves available options for the Project ID field.

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

### `taiga-update-issue` — Update Issue (Write)

Update an existing issue in a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/update-issue.md

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

Update an existing task in a Taiga project. See the documentation

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

### `taiga-update-userstory` — Update User Story (Write)

Update an existing user story in a Taiga project. See the documentation

Full schema: https://pipedream.com/apps/taiga/actions/update-userstory.md

## Triggers (8)

### `taiga-changed-issue-instant` — Changed Issue (Instant) (Instant)

Emit new event when an issue is updated in the selected project. See the documentation

Full schema: https://pipedream.com/apps/taiga/triggers/changed-issue-instant.md

### `taiga-changed-issue-status-instant` — Changed Issue Status (Instant) (Instant)

Emit new event when an issue status is changed in the selected project. See the documentation

Full schema: https://pipedream.com/apps/taiga/triggers/changed-issue-status-instant.md

### `taiga-changed-task-instant` — Changed Task (Instant) (Instant)

Emit new event when a task is updated in the selected project. See the documentation

Full schema: https://pipedream.com/apps/taiga/triggers/changed-task-instant.md

### `taiga-changed-task-status-instant` — Changed Task Status (Instant) (Instant)

Emit new event when a task status is changed in the selected project. See the documentation

Full schema: https://pipedream.com/apps/taiga/triggers/changed-task-status-instant.md

### `taiga-deleted-issue-instant` — Deleted Issue (Instant) (Instant)

Emit new event when a issue is deleted in the selected project. See the documentation

Full schema: https://pipedream.com/apps/taiga/triggers/deleted-issue-instant.md

### `taiga-deleted-task-instant` — Deleted Task (Instant) (Instant)

Emit new event when a task is deleted in the selected project. See the documentation

Full schema: https://pipedream.com/apps/taiga/triggers/deleted-task-instant.md

### `taiga-new-issue-instant` — New Issue (Instant) (Instant)

Emit new event when an issue is created in the selected project. See the documentation

Full schema: https://pipedream.com/apps/taiga/triggers/new-issue-instant.md

### `taiga-new-task-instant` — New Task (Instant) (Instant)

Emit new event when a task is created in the selected project. See the documentation

Full schema: https://pipedream.com/apps/taiga/triggers/new-task-instant.md

---

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