CONNECT APP
Build with Dart
The ultimate AI project management tool.
Web & App Development
- API key
MCP
Give your agent Dart tools
Every Dart 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 Dart 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": "dart",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// e.g. run Create Doc:
const result = await mcp.callTool({
name: "dart-create-doc",
arguments: {
title: "Title",
folder: "Folder",
},
})# 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": "dart",
}
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 Create Doc:
result = await session.call_tool("dart-create-doc", {
"title": "Title",
"folder": "Folder",
})API PROXY
Call the Dart API directly
For an endpoint with no pre-built tool, the Connect proxy forwards your request to the Dart 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://app.itsdart.com/api/v0/users",
})
// Any allowed Dart 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://app.itsdart.com/api/v0/users
curl "https://api.pipedream.com/v1/connect/{project_id}/proxy/aHR0cHM6Ly9hcHAuaXRzZGFydC5jb20vYXBpL3YwL3VzZXJz?external_user_id={external_user_id}&account_id=apn_xxxxxxx" \
-H "Authorization: Bearer {access_token}" \
-H "x-pd-environment: production"SDK
Run Dart actions from your backend
Connect a user's Dart account once, then run Create Doc 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: "dart-create-doc",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
dart: { authProvisionId: "apn_xxxxxxx" },
title: "Title",
folder: "Folder",
},
})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="dart-create-doc",
external_user_id="{external_user_id}", # any stable ID for this user in your system
configured_props={
"dart": {"authProvisionId": "apn_xxxxxxx"},
"title": "Title",
"folder": "Folder",
},
)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": "dart-create-doc",
"configured_props": {
"dart": { "authProvisionId": "apn_xxxxxxx" },
"title": "Title",
"folder": "Folder"
}
}'TOOLS
Dart actions
On-demand operations your product or agent can configure and run on behalf of a connected user.
-
Create Doc
actionRecord a new doc that the user intends to write down. This will save the doc in Dart for later access, search, etc. By default the created doc will be in the Docs folder. More information can be included in the text. See the documentationWritev0.0.2 -
Create Task
actionCreates a new task within a dartboard. See the documentationWritev1.0.0 -
Delete Doc
actionMove an existing doc to the trash, where it can be recovered if needed. Nothing else about the doc will be changed. See the documentationWritev0.0.2 -
Find or Create Task
actionChecks for an existing task within a dartboard using the 'task-name'. If it doesn't exist, a new task is created. See the documentationRead-onlyv1.0.0 -
List Assigned To Options
actionRetrieves available options for the Assigned To field.Read-onlyv0.0.1 -
List Dartboard Options
actionRetrieves available options for the Dartboard field.Read-onlyv0.0.1 -
List Doc ID Options
actionRetrieves available options for the Doc ID field.Read-onlyv0.0.1 -
List Priority Options
actionRetrieves available options for the Priority field.Read-onlyv0.0.1 -
List Size Options
actionRetrieves available options for the Size field.Read-onlyv0.0.1 -
List Status Options
actionRetrieves available options for the Status field.Read-onlyv0.0.1 -
List Tags Options
actionRetrieves available options for the Tags field.Read-onlyv0.0.1 -
List Task ID Options
actionRetrieves available options for the Task ID field.Read-onlyv0.0.1 -
List Type Options
actionRetrieves available options for the Type field.Read-onlyv0.0.1 -
Update Doc
actionUpdate certain properties of an existing doc. This will save the doc in Dart for later access, search, etc. Any properties that are not specified will not be changed. See the documentationWritev0.0.2 -
Update Task
actionUpdates an existing task within a dartboard. See the documentationWritev1.0.0
- App slug
- dart
- Authentication
- API key
- Categories
- Web & App Development
- Actions
- 15
- Triggers
- 3
- API proxy
- Available