Taiga ACTION
Update User Story
Update an existing user story in a Taiga project. See the documentation
- Action
- Writes data
- Destructive
- OAuth
- SDK
- MCP
IMPLEMENTATION
Call this tool
Connect a user's Taiga account once, then configure and run Update User Story 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: "taiga-update-userstory",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
taiga: { authProvisionId: "apn_xxxxxxx" },
projectId: "Project ID",
userStoryId: "User Story ID",
},
})
console.log(result)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "taiga-update-userstory",
"configured_props": {
"taiga": { "authProvisionId": "apn_xxxxxxx" },
"projectId": "Project ID",
"userStoryId": "User Story ID"
}
}'// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
new URL("https://remote.mcp.pipedream.net/v3"),
{
requestInit: {
headers: {
Authorization: `Bearer ${accessToken}`,
"x-pd-project-id": "{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()
// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
name: "taiga-update-userstory",
arguments: {
projectId: "Project ID",
userStoryId: "User Story ID",
},
})SCHEMA
Inputs
Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.
| Property | Type | Description |
|---|---|---|
projectId Project ID | string | Select a project or provide a project ID Required Dynamic |
userStoryId User Story ID | string | Select a user story or provide a user story ID Required Dynamic |
subject Subject | string | The user story subject/title Optional |
description Description | string | The user story description Optional |
status User Story Status | string | Select a user story status or provide a user story status Optional Dynamic |
assignedTo Assigned To | string | User to assign the user story to Optional Dynamic |
tags Tags | string[] | Tags to associate with the user story Optional |
backlogOrder Backlog Order | integer | The order in the backlog Optional |
kanbanOrder Kanban Order | integer | The order in the kanban Optional |
sprintOrder Sprint Order | integer | The order in the sprint Optional |
clientRequirement Client Requirement | boolean | Whether the user story is a client requirement Optional |
isBlocked Is Blocked | boolean | Whether the user story is blocked Optional |
milestone Milestone | string | Milestone to associate the user story with Optional Dynamic |
points Points | object | A dictionary of points. The key is the id of the role and the value is the id of the points. Format: {"10469741": 20817870, "10469742": 20817871, "10469743": 20817872, "10469744": 20817873} Optional |
teamRequirement Team Requirement | boolean | Whether the user story is a team requirement Optional |
watchers Watchers | string[] | Users to watch the user story Optional Dynamic |
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
- taiga-update-userstory
- Version
- 0.0.2
- App
- Taiga
- Authentication
- OAuth
- Read-only
- No
- Destructive
- Yes
- Open world
- Yes
- Source
- View on GitHub ↗