View as Markdown
JigsawStack icon

JigsawStack ACTION

Object Detection

Recognize objects within a provided image and retrieve it with great accuracy. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's JigsawStack account once, then configure and run Object Detection 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: "jigsawstack-object-detection",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    jigsawstack: { authProvisionId: "apn_xxxxxxx" },
    file: "Image File or URL",
    fileStoreKey: "File Store Key",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Object Detection inputs
Property Type Description
file Image File or URL string
The URL or file path of the image to process.
Optional
fileStoreKey File Store Key string
The key used to store the image on Jigsawstack file Storage.
Optional
syncDir SyncDir dir
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
jigsawstack-object-detection
Version
1.0.4
App
JigsawStack
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes