Zoho Sprints ACTION
Create Item
Creates a new task, story, or bug in an existing Zoho Sprints project. See the documentation
- Action
- Writes data
- OAuth
- SDK
- MCP
IMPLEMENTATION
Call this tool
Connect a user's Zoho Sprints account once, then configure and run Create Item 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: "zoho_sprints-create-item",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
zoho_sprints: { authProvisionId: "apn_xxxxxxx" },
teamId: "Team",
projectId: "Project",
},
})
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": "zoho_sprints-create-item",
"configured_props": {
"zoho_sprints": { "authProvisionId": "apn_xxxxxxx" },
"teamId": "Team",
"projectId": "Project"
}
}'// 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": "zoho_sprints",
},
},
},
)
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: "zoho_sprints-create-item",
arguments: {
teamId: "Team",
projectId: "Project",
},
})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 |
|---|---|---|
teamId Team | string | Identifier of a team Required Dynamic |
projectId Project | string | Identifier of a project Required Dynamic |
sprintId Sprint | string | Identifier of a sprint Required Dynamic |
name Name | string | Name of the item Required |
itemTypeId Item Type | string | Identifier of an item type Required Dynamic |
priorityTypeId Priority Type | string | Identifier of a priority type Required Dynamic |
epicId Epic | string | Identifier of an epic Optional Dynamic |
assignees Assignees | string[] | User IDs of the users who will work on the item Optional Dynamic |
description Description | string | Description of the item Optional |
startDate Start Date | string | Start date of the item. yyyy-MM-dd'T'HH:mm:ssZ (ISO format) Example : 2017-10-13T00:00:00+05:30 Optional |
endDate End Date | string | End date of the item. yyyy-MM-dd'T'HH:mm:ssZ (ISO format) Example : 2017-10-13T00:00:00+05:30 Optional |
duration Duration | string | Duration of the item. Available format: ".5" = 30mins, "2:50" = 2hrs 50mins, "3.5" = 3hrs 30mins, "2d 4h 8m" = 2days 4hrs and 8mins Optional |
points Points | integer | Estimation points set for the item. Index of the estimation points. Example: The index of 2 in a Fibonacci estimation type is 2 and the index of 8 will be 5. Optional |
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
- zoho_sprints-create-item
- Version
- 0.0.2
- App
- Zoho Sprints
- Authentication
- OAuth
- Read-only
- No
- Destructive
- No
- Open world
- Yes
- Source
- View on GitHub ↗