CONNECT APP
Build with Kanban Tool
Productivity
- API key
MCP
Give your agent Kanban Tool tools
Every Kanban Tool action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Kanban Tool account for each tool call — you store no tokens.
// 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": "kanban_tool",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// e.g. run Archive Task:
const result = await mcp.callTool({
name: "kanban_tool-archive-task",
arguments: {
boardId: 10,
taskId: 10,
},
})# access_token: mint a short-lived token with the Connect SDK — see the MCP guide
headers = {
"Authorization": f"Bearer {access_token}",
"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": "kanban_tool",
}
async with streamablehttp_client("https://remote.mcp.pipedream.net/v3", headers=headers) as (read, write, _):
async with ClientSession(read, write) as session:
await session.initialize()
tools = await session.list_tools()
# e.g. run Archive Task:
result = await session.call_tool("kanban_tool-archive-task", {
"boardId": 10,
"taskId": 10,
})API PROXY
Call the Kanban Tool API directly
For an endpoint with no pre-built tool, the Connect proxy forwards your request to the Kanban Tool API with the connected user's credentials attached. You store no tokens and write no refresh logic.
const resp = await pd.proxy.get({
externalUserId: "{external_user_id}", // any stable ID for this user in your system
accountId: "apn_xxxxxxx",
url: "https://api.example.com/v1/me",
})
// Any allowed Kanban Tool endpoint works here. Pipedream attaches the
// connected account's credentials to the outgoing request.# The path segment is the target URL, URL-safe base64 encoded:
# https://api.example.com/v1/me
curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcGkuZXhhbXBsZS5jb20vdjEvbWU?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
-H "Authorization: Bearer {access_token}" \
-H "x-pd-environment: production"SDK
Run Kanban Tool actions from your backend
Connect a user's Kanban Tool account once, then run Archive Task on their behalf from your own code — TypeScript, Python, or plain HTTP.
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: "kanban_tool-archive-task",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
kanban_tool: { authProvisionId: "apn_xxxxxxx" },
boardId: 10,
taskId: 10,
},
})from pipedream import Pipedream
pd = Pipedream(
client_id="{oauth_client_id}",
client_secret="{oauth_client_secret}",
project_id="{project_id}",
project_environment="production",
)
result = pd.actions.run(
id="kanban_tool-archive-task",
external_user_id="{external_user_id}", # any stable ID for this user in your system
configured_props={
"kanban_tool": {"authProvisionId": "apn_xxxxxxx"},
"boardId": 10,
"taskId": 10,
},
)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": "kanban_tool-archive-task",
"configured_props": {
"kanban_tool": { "authProvisionId": "apn_xxxxxxx" },
"boardId": 10,
"taskId": 10
}
}'TOOLS
Kanban Tool actions
On-demand operations your product or agent can configure and run on behalf of a connected user.
-
Archive Task
actionArchives a task See the docs hereWritev0.0.3 -
Complete Subtask(Checklist Item)
actionMarks a subtask as completed See the docs hereWritev0.0.3 -
Create Comment
actionCreates a comment See the docs hereWritev0.0.3 -
Create Subtask(Checklist Item)
actionCreates a subtask See the docs hereWritev0.0.3 -
Create Task
actionCreates a task See the docs hereWritev0.0.3 -
Delete Subtask(Checklist Item)
actionSoft deletes a subtask See the docs hereWritev0.0.3 -
Delete Task
actionSoft deletes a task See the docs hereWritev0.0.3 -
Find Task
actionFinds task with given parameters See the docs hereRead-onlyv0.0.3 -
Get Task Details
actionGets details of a selected task See the docs hereWritev0.0.3 -
List Board ID Options
actionRetrieves available options for the Board ID field.Read-onlyv0.0.1 -
Move Task
actionMoves a task See the docs hereWritev0.0.3 -
Update Subtask(Checklist Item)
actionUpdates a subtask with the given parameters See the docs hereWritev0.0.3 -
Update Task
actionUpdates a task with the given parameters See the docs hereWritev0.0.3
EVENTS
Kanban Tool triggers
Event sources your backend can deploy for users and receive through a webhook.
-
New Activity Event
triggerEmit new events when a new activity occured on selected board. See the docsv0.0.1 -
New Board Collaborator Created Event
triggerEmit new events when a new board collaborator is created on selected board. See the docsv0.0.1 -
New Board Created Event
triggerEmit new events when a new board is created or given access for a new board. See the docsv0.0.1 -
New Card Type Created Event
triggerEmit new events when a new card type is created on selected board. See the docsv0.0.1 -
New Comment Created Event
triggerEmit new events when a new comment is created on selected board. See the docsv0.0.1 -
New Subtask(Checklist Item) Created Event
triggerEmit new events when a new subtask is created on selected task. See the docsv0.0.1 -
New Swimlane Created Event
triggerEmit new events when a new swimlane is created on selected board. See the docsv0.0.1 -
New Task Archived Event
triggerEmit new events when a task is archived on selected board. See the docsv0.0.1 -
New Task Event
triggerEmit new events when a new task is created on selected board. See the docsv0.0.1 -
New Task Moved Event
triggerEmit new events when a task is moved on selected board. See the docsv0.0.1 -
New Task Updated Event
triggerEmit new events when a task is updated on selected board. See the docsv0.0.1 -
New Workflow Stage Created Event
triggerEmit new events when a new workflow stage is created on selected board. See the docsv0.0.1
- App slug
- kanban_tool
- Authentication
- API key
- Categories
- Productivity
- Actions
- 13
- Triggers
- 12
- API proxy
- Available